diff options
Diffstat (limited to 'app/globals.css')
| -rw-r--r-- | app/globals.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/globals.css b/app/globals.css index f1d8bb54..fa510ec4 100644 --- a/app/globals.css +++ b/app/globals.css @@ -210,4 +210,12 @@ th[data-read-only="true"] { /* 선택적: 편집 화면으로 이동 시 읽기 전용 필드 강조 */ .edit-mode .read-only-cell { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); +} + +@layer components { + .tbl-compact thead th { @apply px-2 py-1 text-xs font-semibold; } + .tbl-compact tbody td { @apply px-2 py-1 text-xs align-middle; } + .tbl-compact tbody tr { @apply hover:bg-muted/40; } /* 선택 */ + /* 필요시 행 높이 제한 */ + .tbl-compact tbody tr > * { @apply h-8; } /* 32 px 정도 */ }
\ No newline at end of file |
