From 822c654ce567e6cdcaffbd9d3f0823a394f0a2e5 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Mon, 30 Mar 2026 10:06:54 +0900 Subject: [PATCH] =?UTF-8?q?fix(tkfb):=20=EC=97=B0=EC=B0=A8=20=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EB=B8=94=20=EB=B9=88=20=ED=96=89=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=20=E2=80=94=20border/spacing=20=EA=B0=95=EC=A0=9C=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - border-collapse/spacing !important 적용 - table-layout: fixed로 컬럼 안정화 - border-top 제거 후 thead 첫 행만 복원 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../web/pages/attendance/annual-overview.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/system1-factory/web/pages/attendance/annual-overview.html b/system1-factory/web/pages/attendance/annual-overview.html index f57b222..1aee6be 100644 --- a/system1-factory/web/pages/attendance/annual-overview.html +++ b/system1-factory/web/pages/attendance/annual-overview.html @@ -63,14 +63,21 @@ /* 테이블 */ .data-table { width: 100%; - border-collapse: collapse; + border-collapse: collapse !important; + border-spacing: 0 !important; font-size: 0.85rem; background: white; + table-layout: fixed; } + .data-table thead { display: table-header-group; } .data-table th, .data-table td { padding: 0.6rem 0.5rem; text-align: center; border: 1px solid #e5e7eb; + border-top: none; + } + .data-table thead tr:first-child th { + border-top: 1px solid #e5e7eb; } .data-table th { background: #f9fafb;