🐛 fix(table.tsx): remove unnecessary "overflow-auto" class from table container div to fix styling issue
This commit is contained in:
parent
39daf5e8cf
commit
c9b5a09c46
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ const Table = React.forwardRef<
|
|||
HTMLTableElement,
|
||||
React.HTMLAttributes<HTMLTableElement>
|
||||
>(({ className, ...props }, ref) => (
|
||||
<div className="w-full overflow-auto">
|
||||
<div className="">
|
||||
<table
|
||||
ref={ref}
|
||||
className={cn("w-full caption-bottom text-sm", className)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue