18128: Fixes app's main content layouts.
[arvados-workbench2.git] / src / components / data-table / data-table.tsx
index 0c84f642fd1cc2733b9a6d0cec03ab72b21ca669..de52d365030dfdc7a48a47bb2f6f52cd31fade51 100644 (file)
@@ -39,13 +39,11 @@ type CssRules = "tableBody" | "root" | "content" | "noItemsInfo" | 'tableCell' |
 
 const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
     root: {
-        overflowX: 'auto',
-        overflowY: 'auto',
-        height: 'calc(100vh - 280px)',
+        width: '100%',
     },
     content: {
         display: 'inline-block',
-        width: '100%'
+        width: '100%',
     },
     tableBody: {
         background: theme.palette.background.paper