Skip to content

Commit

Permalink
Fix layering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
qwtel committed Aug 31, 2024
1 parent f3c03b2 commit cd2d3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/ui/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const TableHeader = React.forwardRef<
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("[&_tr]:border-b grid sticky top-[3.5rem] bg-card border-t-2", className)}
className={cn("[&_tr]:border-b grid sticky top-[3.5rem] bg-card border-t-2 z-10", className)}
style={{ ...props.style, marginTop: '-2px' }}
{...props}
/>
Expand Down

0 comments on commit cd2d3f6

Please sign in to comment.