@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
43 lines (42 loc) • 1.39 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
borderRadius: 0,
paddingBottom: 0,
overflow: 'visible',
[theme.breakpoints.up('sm')]: {
borderRadius: theme.shape.borderRadius
},
'& .MuiChip-root': {
height: '18px'
},
'& .SCUser-avatar': {
width: theme.selfcommunity.user.avatar.sizeMedium,
height: theme.selfcommunity.user.avatar.sizeMedium,
'& img': {
borderRadius: 0
}
},
'& .SCUser-staff-badge-label': {
marginLeft: theme.spacing(1),
borderRadius: 0,
fontSize: '0.5rem'
},
'& .SCUser-group-admin-badge-label': {
marginLeft: theme.spacing(1),
fontSize: '0.75rem',
color: theme.palette.secondary.main
},
'& .SCBaseItemButton-primary': {
fontWeight: theme.typography.fontWeightBold
},
'& .SCBaseItemButton-secondary': {
fontSize: '0.857rem'
}
}),
skeletonRoot: ({ theme }) => ({})
}
};
exports.default = Component;