Skip to content

Commit 0421f55

Browse files
ImTotemclaude
andcommitted
fix: 정렬/필터 간격을 검색/선택지 간격과 동일하게 축소
space-y-1→space-y-0.5, EnumFilter gap-1→gap-0.5로 통일. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5f45053 commit 0421f55

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/data-table/ColumnHeaderPopover.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function EnumFilter({
8686
};
8787

8888
return (
89-
<div className="flex flex-col gap-1">
89+
<div className="flex flex-col gap-0.5">
9090
<Input
9191
value={search}
9292
onChange={(e) => setSearch(e.target.value)}
@@ -240,7 +240,7 @@ export function ColumnHeaderPopover({
240240
<span className="text-[10px] text-muted-foreground">{sortPriority}</span>
241241
)}
242242
</PopoverTrigger>
243-
<PopoverContent align="start" className="w-auto min-w-48 space-y-1 p-1.5" side="bottom">
243+
<PopoverContent align="start" className="w-auto min-w-48 space-y-0.5 p-1.5" side="bottom">
244244
{sortable && onSort && (
245245
<SortSection currentSort={currentSort} onSort={onSort} />
246246
)}

0 commit comments

Comments
 (0)