adjust table styling

This commit is contained in:
Milo Schwartz 2024-10-19 12:45:08 -04:00
parent efefae238b
commit edde7a247a
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ const TableCell = React.forwardRef<
>(({ className, ...props }, ref) => (
<td
ref={ref}
className={cn("p-4 align-middle [&:has([role=checkbox])]:pr-0", className)}
className={cn("p-3 align-middle [&:has([role=checkbox])]:pr-0", className)}
{...props}
/>
))