@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
35 lines (34 loc) • 1.14 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({}),
popoverRoot: ({ theme }) => ({
width: '260px',
borderRadius: '4px',
'& .MuiPaper-root': {
padding: theme.spacing(2)
},
'& .SCLessonReleaseMenu-popover-content': {
marginTop: theme.spacing(1),
'& .SCLessonReleaseMenu-popover-selection': {
display: 'flex',
alignItems: 'center',
gap: theme.spacing(2),
'& .MuiInputBase-root': {
width: '68px',
height: '38px'
},
'& .MuiRadio-root': {
padding: theme.spacing(0.5)
}
},
'& .SCLessonReleaseMenu-popover-action': {
marginTop: theme.spacing(1),
width: '100%'
}
}
})
}
};
exports.default = Component;