65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
@import "../../../style/CommonStyle.module.less";
|
|
@import "../../../style/utils.module.less";
|
|
|
|
.tHeaderCustom {
|
|
align-self: stretch;
|
|
margin: 30px 0; // 상하 30px, 좌우 0px 마진 (DetailPanel에서 이미 60px padding 적용)
|
|
height: 60px; // 마진을 제외한 높이 60px
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
background-color: transparent; // DetailPanel에서는 배경 투명
|
|
.prdtId {
|
|
font-size: 30px;
|
|
font-weight: 700;
|
|
color: #999;
|
|
margin-right: 10px;
|
|
}
|
|
.title {
|
|
width: 1650px;
|
|
font-size: 25px;
|
|
font-weight: 600;
|
|
color: #eaeaea;
|
|
padding-left: 0;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
margin-right: 20px; // Header Title 후 간격 (children과의 gap)
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
.size(@w: 60px, @h: 60px);
|
|
background-size: 60px 60px;
|
|
background-position: center;
|
|
background-image: url("../../../../assets/images/btn/btn-60-bk-back-nor@3x.png");
|
|
border: none;
|
|
flex-shrink: 0;
|
|
margin-right: 20px; // 되돌아가기 아이콘 후 20px gap
|
|
|
|
&:focus {
|
|
border-radius: 10px;
|
|
background-image: url("../../../../assets/images/btn/btn-60-wh-back-foc@3x.png");
|
|
box-shadow: 0px 6px 30px 0 rgba(0, 0, 0, 0.4);
|
|
}
|
|
}
|
|
|
|
.centerImage {
|
|
.size(@w: 60px, @h: 60px);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
flex-shrink: 0;
|
|
margin-right: 10px; // 파트너사 로고 후 10px gap
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.themeTitle {
|
|
font-size: 25px;
|
|
font-weight: 600;
|
|
color: #eaeaea;
|
|
width: max-content;
|
|
margin-right: 20px;
|
|
margin-left: 10px;
|
|
} |