From 764436ebc9f8777ec37aab29a857b84d21cfd14e Mon Sep 17 00:00:00 2001 From: ByungCheol Date: Tue, 30 Jun 2026 22:09:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B6=84=EB=A5=98=20=EA=B4=80=EB=A6=AC?= =?UTF-8?q?=20=ED=83=AD=20=EC=A4=84=EB=B0=94=EA=BF=88=20=E2=80=94=20?= =?UTF-8?q?=EC=88=9C=EC=84=9C=EB=B3=80=EA=B2=BD=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=EB=A1=9C=20'=EC=A7=80=EC=B6=9C=EB=B6=84?= =?UTF-8?q?=EB=A5=98'=20=EB=91=90=20=EC=A4=84=20=EA=B9=A8=EC=A7=90=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 탭 텍스트 white-space:nowrap, 탭 영역 flex:none(안 줄어듦) - tabs-row flex-wrap: 좁으면 액션 버튼이 아래 줄로 Co-Authored-By: Claude Opus 4.8 --- src/views/account/CategoryView.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/account/CategoryView.vue b/src/views/account/CategoryView.vue index 6293600..9ce6cbd 100644 --- a/src/views/account/CategoryView.vue +++ b/src/views/account/CategoryView.vue @@ -341,9 +341,11 @@ button.danger { justify-content: space-between; gap: 0.75rem; margin-bottom: 1rem; + flex-wrap: wrap; /* 좁으면 액션 버튼이 아래 줄로 — 탭 텍스트가 깨지지 않게 */ } .tabs-row .tabs { margin-bottom: 0; + flex: none; /* 탭은 줄어들지 않음 */ } .tabs-actions { display: flex; @@ -369,6 +371,7 @@ button.danger { border-radius: 0; background: transparent; padding: 0.6rem 1rem; + white-space: nowrap; /* '지출 분류' 두 줄로 깨짐 방지 */ } .tabs button.active { border-bottom-color: hsla(160, 100%, 37%, 1);