We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f45053 commit 0421f55Copy full SHA for 0421f55
1 file changed
src/components/data-table/ColumnHeaderPopover.tsx
@@ -86,7 +86,7 @@ function EnumFilter({
86
};
87
88
return (
89
- <div className="flex flex-col gap-1">
+ <div className="flex flex-col gap-0.5">
90
<Input
91
value={search}
92
onChange={(e) => setSearch(e.target.value)}
@@ -240,7 +240,7 @@ export function ColumnHeaderPopover({
240
<span className="text-[10px] text-muted-foreground">{sortPriority}</span>
241
)}
242
</PopoverTrigger>
243
- <PopoverContent align="start" className="w-auto min-w-48 space-y-1 p-1.5" side="bottom">
+ <PopoverContent align="start" className="w-auto min-w-48 space-y-0.5 p-1.5" side="bottom">
244
{sortable && onSort && (
245
<SortSection currentSort={currentSort} onSort={onSort} />
246
0 commit comments