@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
39 lines (38 loc) • 1.28 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .SCLiveStreamForm-cover': {
position: 'relative',
height: 120,
minHeight: 120,
'& .SCEventForm-upload-event-cover-root': {
position: 'absolute',
right: theme.spacing(2),
bottom: theme.spacing(1),
padding: theme.spacing(1),
minWidth: 'auto'
}
},
'& .SCLiveStreamForm-warning': {
margin: theme.spacing(2, 0),
[`& a`]: {
color: theme.palette.common.white,
fontWeight: 'bold',
textDecoration: 'underline',
whiteSpace: 'nowrap'
}
},
[`& .SCLiveStreamForm-access-view`]: {
margin: theme.spacing(2, 0)
},
[`& .SCLiveStreamForm-actions`]: {
display: 'flex',
justifyContent: 'flex-end',
marginTop: theme.spacing(2)
}
})
}
};
exports.default = Component;
;