@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 632 B
JavaScript
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .MuiDialogTitle-root': {
'& span': {
flexGrow: 1,
textAlign: 'center'
}
},
[theme.breakpoints.down('sm')]: {
'& .MuiDialogContent-root': {
marginLeft: theme.spacing(2),
marginRight: theme.spacing(2)
},
'& .SCEventForm-actions': {
marginBottom: theme.spacing(2)
}
}
})
}
};
export default Component;