@izumisy-tailor/tailor-data-viewer 0.2.26 → 0.2.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/component/table.tsx +1 -1
package/package.json
CHANGED
package/src/component/table.tsx
CHANGED
|
@@ -12,7 +12,7 @@ interface TableRootProps extends ComponentProps<"table"> {
|
|
|
12
12
|
|
|
13
13
|
function Root({ className, tableLayout = "fixed", ...props }: TableRootProps) {
|
|
14
14
|
return (
|
|
15
|
-
<div className="relative w-full overflow-x-auto">
|
|
15
|
+
<div className="relative w-full overflow-x-auto rounded-md border bg-background">
|
|
16
16
|
<table
|
|
17
17
|
className={cn(
|
|
18
18
|
"w-full caption-bottom text-sm",
|