@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
29 lines (28 loc) • 970 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
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
}
})
}
};
exports.default = Component;
;