Skip to content

Commit

Permalink
Feat(table.tsx): Remove Hover Background
Browse files Browse the repository at this point in the history
  • Loading branch information
WillKirkmanM committed Nov 25, 2024
1 parent ec395f1 commit 41d08fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui/src/components/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ const TableRow = React.forwardRef<
<tr
ref={ref}
className={cn(
"border-b transition-colors hover:bg-slate-100/50 data-[state=selected]:bg-slate-100 dark:hover:bg-slate-800/50 dark:data-[state=selected]:bg-slate-800",
"border-b transition-colors rounded-lg overflow-hidden data-[state=selected]:bg-slate-100 dark:hover:bg-slate-800/50 dark:data-[state=selected]:bg-slate-800",
className
)}
{...props}
/>
))

TableRow.displayName = "TableRow"

const TableHead = React.forwardRef<
Expand Down

0 comments on commit 41d08fb

Please sign in to comment.