ui(expense): 경비 내역 표 가운데 정렬 + 동작 헤더 제거 + 한 줄(너비 자동)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-05-31 02:08:22 +09:00
parent d728c55e2a
commit 84624baf8e
@@ -101,9 +101,9 @@
<th style="width: 90px;">분류</th>
<th style="width: 100px;">수단</th>
<th>가맹점</th>
<th style="width: 120px; text-align: right;">금액</th>
<th style="width: 120px;">금액</th>
<th style="width: 90px;">상태</th>
<th style="width: 240px; text-align: right;">동작</th>
<th style="width: 240px;"></th>
</tr>
</thead>
<tbody id="ex-tbody">
@@ -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; }