From c4c58d2e243d464fd90a78b7deb931807b9fe7db Mon Sep 17 00:00:00 2001 From: ByungCheol Date: Sat, 27 Jun 2026 23:35:24 +0900 Subject: [PATCH 1/5] =?UTF-8?q?fix:=20=EC=9B=94=20=EB=84=A4=EB=B9=84=20?= =?UTF-8?q?=EA=B0=80=EC=9A=B4=EB=8D=B0=20=EC=9C=A0=EC=A7=80=C2=B7=EC=95=A1?= =?UTF-8?q?=EC=85=98=20=EC=9A=B0=EC=B8=A1=20=EC=A0=95=EB=A0=AC=20+=20?= =?UTF-8?q?=EA=B2=80=EC=83=89=20=EB=AA=A8=EB=8B=AC=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EB=84=98=EC=B9=A8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 가계부/예산 month-nav: 좌 spacer + 우 mn-actions(flex:1)로 네비 중앙 고정, 추가/검색·필터 버튼 우측 정렬 - 커뮤니티 검색 모달: input min-width:0 + select/버튼 flex:none 으로 검색 아이콘이 모달 밖으로 밀리는 문제 해결 Co-Authored-By: Claude Opus 4.8 --- src/views/account/AccountView.vue | 23 ++++++++++++++++++----- src/views/account/BudgetView.vue | 14 +++++++++++++- src/views/board/BoardListView.vue | 5 +++++ 3 files changed, 36 insertions(+), 6 deletions(-) diff --git a/src/views/account/AccountView.vue b/src/views/account/AccountView.vue index 40b98d6..bccc5d3 100644 --- a/src/views/account/AccountView.vue +++ b/src/views/account/AccountView.vue @@ -848,14 +848,17 @@ onMounted(async () => {
+ {{ periodLabel }} - - +
+ + +
@@ -1265,6 +1268,16 @@ button.primary { gap: 1rem; margin-bottom: 1rem; } +/* 좌측 spacer + 우측 액션을 같은 flex:1 로 둬서 가운데 네비를 정확히 중앙 유지 */ +.mn-spacer { + flex: 1; +} +.mn-actions { + flex: 1; + display: flex; + justify-content: flex-end; + gap: 0.4rem; +} .period { font-size: 1.1rem; font-weight: 600; diff --git a/src/views/account/BudgetView.vue b/src/views/account/BudgetView.vue index 1d9f0e3..007b321 100644 --- a/src/views/account/BudgetView.vue +++ b/src/views/account/BudgetView.vue @@ -243,10 +243,13 @@ onMounted(() => { diff --git a/src/views/settings/ProfileEditView.vue b/src/views/settings/ProfileEditView.vue index 14a75ee..2ab6d14 100644 --- a/src/views/settings/ProfileEditView.vue +++ b/src/views/settings/ProfileEditView.vue @@ -1,5 +1,5 @@