fix(tkfb): 연차 테이블 헤더 겹침 해결 — sticky 비활성화

tkfb.css의 .data-table thead th { position: sticky; top: 56px }가
첫 번째 데이터 행을 가리는 원인. 이 페이지에서는 sticky 불필요하므로
position: static !important로 오버라이드.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-03-30 10:18:46 +09:00
parent 658474af71
commit 8683787a01

View File

@@ -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; }