diff --git a/src/views/account/AccountDashboardView.vue b/src/views/account/AccountDashboardView.vue index 8106680..d03c308 100644 --- a/src/views/account/AccountDashboardView.vue +++ b/src/views/account/AccountDashboardView.vue @@ -382,10 +382,11 @@ onMounted(async () => { - -
-
-

예산 대비 지출

+ +
+

이번 달 현황

+
+
@@ -405,10 +406,8 @@ onMounted(async () => {

설정된 예산이 없습니다.

-
+
-
-

수입 대비 지출

수입{{ won(monthIncome) }}
지출{{ won(monthExpense) }}
@@ -652,6 +651,26 @@ h2 { .top-grid .panel { margin-bottom: 1rem; } +/* 이번 달 현황: 예산 도넛 + 수입/지출을 한 패널에 좌우로 */ +.month-overview .mo-grid { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 1rem 1.5rem; + align-items: center; +} +.mo-budget { + min-width: 0; +} +@media (max-width: 700px) { + .month-overview .mo-grid { + grid-template-columns: 1fr; + gap: 0.9rem; + } + .mo-budget { + border-bottom: 1px solid var(--color-border); + padding-bottom: 0.9rem; + } +} .donut-wrap { display: flex; align-items: center;