UI 수정

This commit is contained in:
김성경 2026-08-14 15:29:39 +09:00
parent 1cdb47ec2e
commit 9c0c3de35f
2 changed files with 31 additions and 0 deletions

View File

@ -2805,6 +2805,7 @@
.wizard-stepper {
padding: 2rem;
max-width: 100%;
margin-top: 30px;
}
.wizard-stepper-node {

View File

@ -1146,6 +1146,36 @@
}
}
/* 모바일: 제목은 한 줄로 유지하고, 권장 수량/카운트는 그 아래 줄로 내린다 */
@media (max-width: 1023px) {
.asset-section-header {
align-items: flex-start;
}
.asset-section-header-left {
flex: 1;
min-width: 0;
flex-wrap: wrap;
row-gap: 4px;
}
.asset-section-header-left .asset-section-title {
order: 1;
white-space: nowrap;
}
.asset-section-header-left .asset-section-count {
order: 2;
white-space: nowrap;
}
.asset-section-header-left .asset-section-subtitle {
order: 3;
width: 100%;
white-space: nowrap;
}
}
/* Asset Image List */
.asset-image-list {
background-color: #002224;