Skip to content

chore: upgrade to tailwind 4 #19247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix table border
  • Loading branch information
aslilac committed Aug 13, 2025
commit 865758834b574a974e149af76c1b58ec5540fdab
4 changes: 2 additions & 2 deletions site/src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Table = React.forwardRef<
<table
ref={ref}
className={cn(
"w-full caption-bottom text-xs font-medium text-content-secondary border-separate border-spacing-0",
"w-full caption-bottom text-xs font-medium text-content-secondary border-separate border-border border-spacing-0",
className,
)}
{...props}
Expand Down Expand Up @@ -85,7 +85,7 @@ const tableRowVariants = cva(
export const TableRow = React.forwardRef<
HTMLTableRowElement,
React.HTMLAttributes<HTMLTableRowElement> &
VariantProps<typeof tableRowVariants>
VariantProps<typeof tableRowVariants>
>(({ className, hover, ...props }, ref) => (
<tr
ref={ref}
Expand Down
Loading