@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
27 lines (26 loc) • 890 B
JavaScript
const Component = {
styleOverrides: {
menuRoot: ({ theme }) => ({
'& .SCNavigationSettingsIconButton-paper': {
maxWidth: 400,
padding: theme.spacing(2),
'& .MuiList-root': {
padding: 0
}
},
'& .SCNavigationSettingsIconButton-item .MuiListItemIcon-root': {
marginLeft: theme.spacing(0.5),
marginBottom: theme.spacing(0.5),
color: theme.palette.secondary.main
}
}),
drawerRoot: ({ theme }) => ({
'& .SCNavigationSettingsIconButton-item .MuiListItemIcon-root': {
marginLeft: theme.spacing(0.5),
marginBottom: theme.spacing(0.5),
color: theme.palette.secondary.main
}
})
}
};
export default Component;