We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Tabular
1 parent f7124c9 commit 4f8fed3Copy full SHA for 4f8fed3
packages/graph-explorer/src/components/Tabular/Tabular.tsx
@@ -195,15 +195,19 @@ const TabularContent = <T extends object>({
195
return (
196
<div
197
ref={tableRef}
198
- className={cn(styleWithTheme(defaultStyles(variant)), className)}
+ className={cn(
199
+ styleWithTheme(defaultStyles(variant)),
200
+ className,
201
+ "overflow-hidden"
202
+ )}
203
style={{
204
userSelect: tableInstance.state.columnResizing?.isResizingColumn
205
? "none"
206
: "auto",
207
}}
208
>
209
{headerControlsChildren}
- <div {...getTableProps()} className="table">
210
+ <div {...getTableProps()} className="table overflow-auto">
211
212
className={cn("headers", {
213
["headers-sticky"]: !disableStickyHeader,
0 commit comments