Fix blur effects and capitalize 'yes' in admin table

This commit is contained in:
Your Name
2025-04-29 18:34:14 -04:00
parent c9a754fc52
commit ac810b415a
2 changed files with 15 additions and 7 deletions

View File

@@ -28,7 +28,19 @@ const darkTheme = createTheme({
styleOverrides: {
root: {
backdropFilter: 'blur(10px)',
backgroundColor: 'rgba(30, 30, 30, 0.9)',
backgroundColor: 'rgba(30, 30, 30, 0.9) !important',
'&.MuiTableContainer-root': {
backdropFilter: 'blur(10px)',
backgroundColor: 'rgba(30, 30, 30, 0.9) !important',
},
},
},
},
MuiTableCell: {
styleOverrides: {
root: {
backdropFilter: 'blur(10px)',
backgroundColor: 'rgba(30, 30, 30, 0.9) !important',
},
},
},