Files
shoptime/com.twin.app.shoptime/src/components/Optional/OptionalTermsConfirmTest.module.less
optrader cb24110fb0 [251021] fix: flex-basis 수정
🕐 커밋 시간: 2025. 10. 21. 12:34:42

📊 변경 통계:
  • 총 파일: 7개
  • 추가: +15줄
  • 삭제: -15줄

📝 수정된 파일:
  ~ com.twin.app.shoptime/src/components/Optional/OptionalTermsConfirm.module.less
  ~ com.twin.app.shoptime/src/components/Optional/OptionalTermsConfirmTest.module.less
  ~ com.twin.app.shoptime/src/views/DetailPanel/components/BuyOption.module.less
  ~ com.twin.app.shoptime/src/views/IntroPanel/IntroPanel.new.module.less
  ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerItemCard/PlayerItemCard.v2.module.less
  ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/BelowTabContainer.module.less
  ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveShowContainer.module.less

🔧 주요 변경 내용:
  • UI 컴포넌트 아키텍처 개선
  • 코드 정리 및 최적화
  • 모듈 구조 개선
2025-10-21 12:34:44 +09:00

191 lines
4.8 KiB
Plaintext

// src/components/Optional/OptionalTermsConfirmTest.module.less
.testPopup {
width: 958px;
height: 310px;
background-color: white !important;
border-radius: 12px;
box-shadow: 0 20px 70px rgba(2, 3, 3, 0.7) !important;
position: absolute !important;
top: 100px !important;
left: 300px !important;
}
.contentContainer {
// width: 958px;
// height: 310px;
padding: 60px 57px 40px 57px;
background: #E6EBF0;
box-shadow: 0px 20px 12px rgba(0, 0, 0, 0.30);
border-radius: 4px;
display: inline-flex;
justify-content: flex-start;
align-items: flex-start;
box-sizing: border-box;
.mainContent {
flex: 1 1 0%;
display: inline-flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 30px;
.checkboxSection {
align-self: stretch;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
gap: 10px;
.checkboxArea {
min-height: 120px;
display: inline-flex;
justify-content: flex-start;
align-items: center;
gap: 20px;
.checkbox {
min-width: 45px;
min-height: 45px;
flex-shrink: 0;
}
// TButton으로 변경되어 포커스 가능
.termBox {
min-width: 530px;
min-height: 120px;
padding-left: 50px !important;
padding-right: 50px !important;
background: white !important;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.20);
border-radius: 6px;
outline: 1px #CFCFCF solid;
outline-offset: -1px;
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
border: none !important;
// 포커스 스타일 추가
&:focus {
outline: 3px solid #C70850 !important;
outline-offset: 2px !important;
}
.termTitle {
color: #1A1A1A;
font-size: 35px;
font-family: 'LG Smart UI';
font-weight: 700;
line-height: 35px;
}
.expandIcon {
min-width: 37px;
min-height: 37px;
position: relative;
border-radius: 100px;
outline: 2.5px black solid;
outline-offset: -2.5px;
flex-shrink: 0;
.arrow {
width: 14.66px;
height: 6.99px;
left: 16.01px;
top: 25.83px;
position: absolute;
transform: rotate(-90deg);
transform-origin: top left;
outline: 2.5px black solid;
outline-offset: -1.25px;
}
}
}
}
}
.descriptionSection {
align-self: stretch;
padding-top: 20px;
border-top: 1px #C5C6C9 solid;
display: inline-flex;
justify-content: center;
align-items: center;
.description {
display: flex;
justify-content: center;
flex-direction: column;
color: black;
font-size: 26px;
font-family: 'LG Smart UI';
font-weight: 400;
}
}
.buttonSection {
align-self: stretch;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 10px;
.buttonGroup {
align-self: stretch;
display: inline-flex;
justify-content: center;
align-items: center;
gap: 12px;
.agreeButton, .notNowButton, .dontAskButton {
min-width: 300px;
min-height: 80px;
max-width: 450px;
flex: 1;
border-radius: 12px;
display: flex;
justify-content: center;
align-items: center;
> div {
text-align: center;
font-size: 30px;
font-family: 'LG Smart UI';
font-weight: 700;
}
}
.agreeButton {
background: #C70850 !important;
box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.50);
> div {
color: white;
}
}
.notNowButton {
background: #777D8A !important;
> div {
color: #E6E6E6;
}
}
.dontAskButton {
background: rgba(122, 128, 141, 0.30) !important;
> div {
opacity: 0.30;
color: #E6E6E6;
}
}
}
}
}
}