fix(expense): 요약카드 70px — grid-auto-rows 로 행 높이 고정(stretch 무력화)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-05-30 21:37:16 +09:00
parent ca53042eb4
commit 55c98b6b95
@@ -176,9 +176,10 @@
#ex-tbody .js-actions { white-space: nowrap; } #ex-tbody .js-actions { white-space: nowrap; }
#ex-tbody .js-actions > * { margin-left: 4px; vertical-align: middle; } #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 { .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; justify-content: center; gap: 2px;
} }
.erp-expense .erp-summary-value { font-size: 20px; line-height: 1.1; } .erp-expense .erp-summary-value { font-size: 20px; line-height: 1.1; }