24px->25px

This commit is contained in:
Oliver Bryan
2025-12-14 22:07:54 +00:00
parent fa90b3f30e
commit d70ebee7e6

View File

@@ -39,7 +39,7 @@ function TableRow({
<tr <tr
data-slot="table-row" data-slot="table-row"
className={cn( className={cn(
"data-[state=selected]:bg-muted h-[24px] border-b", "data-[state=selected]:bg-muted h-[25px] border-b",
hoverEffect && "hover:bg-muted/40", hoverEffect && "hover:bg-muted/40",
className, className,
)} )}
@@ -53,7 +53,7 @@ function TableHead({ className, ...props }: React.ComponentProps<"th">) {
<th <th
data-slot="table-head" data-slot="table-head"
className={cn( className={cn(
"text-foreground px-2 h-[24px] text-left text-sm align-middle font-medium", "text-foreground px-2 h-[25px] text-left text-sm align-middle font-medium",
"whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]", "whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
className, className,
)} )}