Separate Client Portal & Dashboard
This commit is contained in:
37
frontend/dashboard/src/theme/overrides/List.ts
Normal file
37
frontend/dashboard/src/theme/overrides/List.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import { Theme } from '@mui/material/styles';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function List(theme: Theme) {
|
||||
return {
|
||||
MuiListItemIcon: {
|
||||
styleOverrides: {
|
||||
root: {
|
||||
color: 'inherit',
|
||||
minWidth: 'auto',
|
||||
marginRight: theme.spacing(2),
|
||||
},
|
||||
},
|
||||
},
|
||||
MuiListItemAvatar: {
|
||||
styleOverrides: {
|
||||
root: {
|
||||
minWidth: 'auto',
|
||||
marginRight: theme.spacing(2),
|
||||
},
|
||||
},
|
||||
},
|
||||
MuiListItemText: {
|
||||
styleOverrides: {
|
||||
root: {
|
||||
marginTop: 0,
|
||||
marginBottom: 0,
|
||||
},
|
||||
multiline: {
|
||||
marginTop: 0,
|
||||
marginBottom: 0,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user