Compare commits

..

No commits in common. "26a67714485d84c0f55cdcf8fe8e87b07ce18c95" and "eaba8edf96e09eadff07e780a0313b8005d844cb" have entirely different histories.

2 changed files with 489 additions and 489 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@ function TableHeader({ className, ...props }: React.ComponentProps<"thead">) {
return (
<thead
data-slot="table-header"
className={cn("bg-primary [&_tr]:border-b", className)}
className={cn("[&_tr]:border-b", className)}
{...props}
/>
)
@ -68,7 +68,7 @@ function TableHead({ className, ...props }: React.ComponentProps<"th">) {
<th
data-slot="table-head"
className={cn(
"h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-primary-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
"h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
className
)}
{...props}