Open KenanYusuf opened 5 days ago
See the following issues:
I propose that in v8, we set a default background color on the data grid to avoid such issues.
We could make it customizable through the theme mixin:
import { createTheme } from '@mui/material/styles'; import type {} from '@mui/x-data-grid/themeAugmentation'; const theme = createTheme({ mixins: { MuiDataGrid: { + background: '#340606', pinnedBackground: '#340606', containerBackground: '#343434', }, }, });
added one more issue
See the following issues:
15502
I propose that in v8, we set a default background color on the data grid to avoid such issues.
We could make it customizable through the theme mixin: