From 8683787a01971f32f657e14df746541779f90a2b Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Mon, 30 Mar 2026 10:18:46 +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=ED=97=A4=EB=8D=94=20=EA=B2=B9=EC=B9=A8=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0=20=E2=80=94=20sticky=20=EB=B9=84=ED=99=9C?= =?UTF-8?q?=EC=84=B1=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tkfb.css의 .data-table thead th { position: sticky; top: 56px }가 첫 번째 데이터 행을 가리는 원인. 이 페이지에서는 sticky 불필요하므로 position: static !important로 오버라이드. Co-Authored-By: Claude Opus 4.6 (1M context) --- system1-factory/web/pages/attendance/annual-overview.html | 1 + 1 file changed, 1 insertion(+) diff --git a/system1-factory/web/pages/attendance/annual-overview.html b/system1-factory/web/pages/attendance/annual-overview.html index afd949f..540985d 100644 --- a/system1-factory/web/pages/attendance/annual-overview.html +++ b/system1-factory/web/pages/attendance/annual-overview.html @@ -77,6 +77,7 @@ background: #f9fafb; font-weight: 600; font-size: 0.8rem; + position: static !important; /* tkfb.css의 sticky 오버라이드 */ } .data-table th.col-carryover { background: #fef3c7; color: #92400e; } .data-table th.col-annual { background: #dbeafe; color: #1e40af; }