Skip to content

Commit

Permalink
update: remove hover color on tournament table
Browse files Browse the repository at this point in the history
  • Loading branch information
ng-jayson committed Nov 26, 2024
1 parent 9ebdc0a commit 52a3b86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/shared/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const TableFooter = React.forwardRef<
<tfoot
ref={ref}
className={cn(
"bg-muted/50 border-t font-medium [&>tr]:last:border-b-0",
"border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
className
)}
{...props}
Expand All @@ -58,7 +58,7 @@ const TableRow = React.forwardRef<
<tr
ref={ref}
className={cn(
"hover:bg-muted/50 data-[state=selected]:bg-muted border-b transition-colors",
"border-b transition-colors data-[state=selected]:bg-muted/50",
className
)}
{...props}
Expand All @@ -73,7 +73,7 @@ const TableHead = React.forwardRef<
<th
ref={ref}
className={cn(
"text-muted-foreground h-12 px-4 text-left align-middle font-medium [&:has([role=checkbox])]:pr-0",
"h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",
className
)}
{...props}
Expand All @@ -99,7 +99,7 @@ const TableCaption = React.forwardRef<
>(({ className, ...props }, ref) => (
<caption
ref={ref}
className={cn("text-muted-foreground mt-4 text-sm", className)}
className={cn("mt-4 text-sm text-muted-foreground", className)}
{...props}
/>
));
Expand Down

1 comment on commit 52a3b86

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for mlbb-fyi ready!

✅ Preview
https://mlbb-4c692jam8-jinjays.vercel.app

Built with commit 52a3b86.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.