🔧 헤더 패딩 제거로 그리드 정렬 완전 해결
Some checks failed
SonarQube Analysis / SonarQube Scan (push) Has been cancelled

- 근본 원인: 헤더 셀의 padding: 0 8px가 그리드 정렬을 방해
- 모든 헤더 div와 filterable-header의 padding 제거
- grid-template-columns 너비가 정확히 적용되도록 수정
- 이제 헤더와 본문의 컬럼이 완벽히 정렬됨
This commit is contained in:
Hyungi Ahn
2025-10-13 15:09:38 +09:00
parent 2ea7f2879f
commit 511f5c4f19

View File

@@ -324,18 +324,18 @@
.detailed-grid-header > div {
border-right: 1px solid #d1d5db;
padding: 0 8px;
padding: 0;
}
.detailed-grid-header .filterable-header {
border-right: 1px solid #d1d5db;
padding: 0 8px;
padding: 0;
}
.detailed-grid-header > div:last-child,
.detailed-grid-header .filterable-header:last-child {
border-right: none;
padding: 0 8px;
padding: 0;
}
/* PIPE 전용 헤더 - 9개 컬럼 */