From cd42bca8fa123ef0e3f616daef77256e28f49be5 Mon Sep 17 00:00:00 2001 From: Amit Amrutiya Date: Fri, 15 Nov 2024 15:20:20 +0530 Subject: [PATCH] feat: remove width property from dataTableTheme for cleaner styling Signed-off-by: Amit Amrutiya --- src/custom/ResponsiveDataTable.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/custom/ResponsiveDataTable.tsx b/src/custom/ResponsiveDataTable.tsx index 7f99704f..55098698 100644 --- a/src/custom/ResponsiveDataTable.tsx +++ b/src/custom/ResponsiveDataTable.tsx @@ -126,8 +126,7 @@ const dataTableTheme = (theme: Theme, backgroundColor?: string) => styleOverrides: { root: { background: backgroundColor || theme.palette.background.default, - maxWidth: '-moz-available', - width: '-moz-available' + maxWidth: '-moz-available' } } },