Skip to content

Commit

Permalink
styling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seanquiambao committed Dec 30, 2024
1 parent 612ee69 commit 5bfdbda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/global/table/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Table = <TData, TValue>({ table, columns }: props<TData, TValue>) => {
<>
<div className="flex h-[75vh] overflow-y-scroll rounded-md border">
<Datatable>
<TableHeader className="rounded-t-lg bg-starlight-blue hover:bg-starlight-blue">
<TableHeader className="rounded-t-lg bg-starlight-blue">
{table.getHeaderGroups().map((headerGroup) => (
<TableRow key={headerGroup.id}>
{headerGroup.headers.map((header) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const TableRow = React.forwardRef<
<tr
ref={ref}
className={cn(
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
"border-b transition-colors data-[state=selected]:bg-muted",
className,
)}
{...props}
Expand Down

0 comments on commit 5bfdbda

Please sign in to comment.