Revert "updates on the ui changes"

This reverts commit 298fc603a0.
This commit is contained in:
2026-07-14 12:13:46 +05:30
parent 298fc603a0
commit d2f264460a
44 changed files with 4661 additions and 7053 deletions

20
src/theme/index.js Normal file
View File

@@ -0,0 +1,20 @@
import { createTheme } from '@mui/material/styles';
import palette from './palette';
import typography from './typography';
import customShadows from './shadows';
import componentsOverride from './componentsOverride';
// ==============================|| DOORMILE THEME - ENTRY ||============================== //
let theme = createTheme({
palette,
typography,
shape: { borderRadius: 6 },
customShadows,
mixins: { toolbar: { minHeight: 64 } }
});
theme.components = componentsOverride(theme);
export default theme;