fix(stock): 포트폴리오 카드 모바일 금액 줄바꿈 방지

천만원 단위 이상에서 '원'이 다음 줄로 넘어가던 문제 해결.
값 길이별 폰트 단계 축소(is-fit-sm/xs) + nowrap 적용.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-06 03:54:20 +09:00
parent 4acdc451c0
commit d38ee553c3
3 changed files with 59 additions and 27 deletions

View File

@@ -833,6 +833,17 @@
.pf-total-summary__card strong {
font-size: 16px;
color: var(--text);
white-space: nowrap;
}
.pf-total-summary__card strong.is-fit-sm {
font-size: 13px;
letter-spacing: -0.01em;
}
.pf-total-summary__card strong.is-fit-xs {
font-size: 11px;
letter-spacing: -0.02em;
}
.pf-item-actions {
@@ -955,6 +966,14 @@
.pf-total-summary__card strong {
font-size: 14px;
}
.pf-total-summary__card strong.is-fit-sm {
font-size: 12px;
}
.pf-total-summary__card strong.is-fit-xs {
font-size: 10px;
}
}
/* ── Cash Panel (예수금) ─────────────────────────────────────────── */