From 55c98b6b95b9a49c5d32a4871d69edb0a951ea89 Mon Sep 17 00:00:00 2001 From: king Date: Sat, 30 May 2026 21:37:16 +0900 Subject: [PATCH] =?UTF-8?q?fix(expense):=20=EC=9A=94=EC=95=BD=EC=B9=B4?= =?UTF-8?q?=EB=93=9C=2070px=20=E2=80=94=20grid-auto-rows=20=EB=A1=9C=20?= =?UTF-8?q?=ED=96=89=20=EB=86=92=EC=9D=B4=20=EA=B3=A0=EC=A0=95(stretch=20?= =?UTF-8?q?=EB=AC=B4=EB=A0=A5=ED=99=94)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- app/modules/expense/templates/expense/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/modules/expense/templates/expense/index.html b/app/modules/expense/templates/expense/index.html index e735f93..0dd1b9b 100644 --- a/app/modules/expense/templates/expense/index.html +++ b/app/modules/expense/templates/expense/index.html @@ -176,9 +176,10 @@ #ex-tbody .js-actions { white-space: nowrap; } #ex-tbody .js-actions > * { margin-left: 4px; vertical-align: middle; } - /* 상단 요약 카드: 세로 70px 고정 */ + /* 상단 요약 카드: 세로 70px 고정 (grid 행 높이를 고정해야 stretch 에 안 밀림) */ + .erp-expense .erp-summary-grid { grid-auto-rows: 70px; } .erp-expense .erp-summary-card { - height: 70px; min-height: 70px; padding: 10px 14px; + height: 70px; min-height: 0; padding: 8px 14px; justify-content: center; gap: 2px; } .erp-expense .erp-summary-value { font-size: 20px; line-height: 1.1; }