From 84624baf8e92fb3ad743271596df8602cb1b19de Mon Sep 17 00:00:00 2001 From: king Date: Sun, 31 May 2026 02:08:22 +0900 Subject: [PATCH] =?UTF-8?q?ui(expense):=20=EA=B2=BD=EB=B9=84=20=EB=82=B4?= =?UTF-8?q?=EC=97=AD=20=ED=91=9C=20=EA=B0=80=EC=9A=B4=EB=8D=B0=20=EC=A0=95?= =?UTF-8?q?=EB=A0=AC=20+=20=EB=8F=99=EC=9E=91=20=ED=97=A4=EB=8D=94=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0=20+=20=ED=95=9C=20=EC=A4=84(=EB=84=88?= =?UTF-8?q?=EB=B9=84=20=EC=9E=90=EB=8F=99)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- .../expense/templates/expense/index.html | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/app/modules/expense/templates/expense/index.html b/app/modules/expense/templates/expense/index.html index 14546c3..40c4cb1 100644 --- a/app/modules/expense/templates/expense/index.html +++ b/app/modules/expense/templates/expense/index.html @@ -101,9 +101,9 @@ 분류 수단 가맹점 - 금액 + 금액 상태 - 동작 + @@ -188,6 +188,19 @@ .erp-expense .erp-summary-card--mini { padding: 8px 14px; } /* 요약줄과 2단 블록 사이 간격 */ .ex-two-col { margin-top: var(--sp-20); } + + /* 경비 내역 테이블: 전부 가운데 정렬 + 한 줄(2줄 방지) + 너비 자동 */ + #ex-table { table-layout: auto; } + #ex-table th, #ex-table td { + text-align: center !important; + white-space: nowrap; + width: auto !important; + vertical-align: middle; + } + #ex-table th:first-child, #ex-table td:first-child { width: 36px !important; } + #ex-table td > div { white-space: nowrap; } /* 가맹점/메모 줄바꿈 방지 */ + #ex-tbody .js-actions { text-align: center !important; } + #ex-tbody .js-actions > * { margin: 0 2px; } .erp-expense .erp-summary-value { font-size: 20px; line-height: 1.1; } .erp-expense .erp-summary-value--sm { font-size: 18px; }