From d84101ecdacae86c5fbfadcca8e9c65ea8fa1395 Mon Sep 17 00:00:00 2001 From: sb Date: Mon, 6 Jul 2026 23:55:13 +0900 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=EA=B3=84=EC=A2=8C=20=EC=B9=A9=20min?= =?UTF-8?q?-width:0=20=E2=80=94=20=EA=B7=B8=EB=A6=AC=EB=93=9C=20=EC=95=84?= =?UTF-8?q?=EC=9D=B4=ED=85=9C=EC=9D=B4=20=EC=95=88=20=EC=A4=84=EC=96=B4=20?= =?UTF-8?q?=EB=84=98=EC=B9=98=EB=8D=98=20=EC=A7=84=EC=A7=9C=20=EC=9B=90?= =?UTF-8?q?=EC=9D=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 칩(그리드 아이템)의 기본 min-width:auto(=글자 전체너비)가 minmax(0,1fr)을 무력화해 긴 계좌명이 그리드를 넓혀 모달이 가로로 넘침. 칩에 min-width:0 추가로 축소+…처리. Co-Authored-By: Claude Opus 4.8 --- src/components/ui/ChipSelect.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ui/ChipSelect.vue b/src/components/ui/ChipSelect.vue index 49ccc81..286b125 100644 --- a/src/components/ui/ChipSelect.vue +++ b/src/components/ui/ChipSelect.vue @@ -46,6 +46,7 @@ function pick(v, disabled) { padding: 0.5rem; } .cs-chip { + min-width: 0; /* 그리드 아이템 기본 min-width:auto(=글자너비) 해제 → 칸이 줄고 긴 이름은 …로 */ padding: 0.5rem 0.5rem; border: 1px solid var(--color-border-hover); border-radius: 8px;