@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
34 lines (33 loc) • 1.04 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
padding: theme.spacing(2),
[theme.breakpoints.up('sm')]: {
paddingBottom: theme.spacing(5)
},
height: '100%',
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-between',
'& .SCLessonEditForm-form': {
display: 'flex',
flexDirection: 'column'
},
'& .MuiFormLabel-root': {
fontWeight: 700,
color: 'inherit',
'& .Mui-focused': { color: 'inherit' }
},
'& .SCLessonEditForm-settings': {
marginTop: theme.spacing(2)
},
'& .SCLessonEditForm-button': {
alignSelf: 'center',
marginBottom: theme.spacing(3)
}
})
}
};
exports.default = Component;
;