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