Skip to content

Commit 8657588

Browse files
committed
fix table border
1 parent ec629b0 commit 8657588

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/components/Table/Table.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const Table = React.forwardRef<
1515
<table
1616
ref={ref}
1717
className={cn(
18-
"w-full caption-bottom text-xs font-medium text-content-secondary border-separate border-spacing-0",
18+
"w-full caption-bottom text-xs font-medium text-content-secondary border-separate border-border border-spacing-0",
1919
className,
2020
)}
2121
{...props}
@@ -85,7 +85,7 @@ const tableRowVariants = cva(
8585
export const TableRow = React.forwardRef<
8686
HTMLTableRowElement,
8787
React.HTMLAttributes<HTMLTableRowElement> &
88-
VariantProps<typeof tableRowVariants>
88+
VariantProps<typeof tableRowVariants>
8989
>(({ className, hover, ...props }, ref) => (
9090
<tr
9191
ref={ref}

0 commit comments

Comments
 (0)