@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
25 lines (24 loc) • 835 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .SCUserCounters-button': {
color: theme.palette.text.primary,
padding: theme.spacing(0.5),
borderRadius: theme.shape.borderRadius / 3,
fontSize: '1.143rem',
fontWeight: theme.typography.fontWeightMedium,
'& strong': {
display: 'inline-block',
marginRight: theme.spacing(1),
fontWeight: theme.typography.fontWeightBold
},
'&:hover, &:active': {
color: theme.palette.secondary.main
}
}
})
}
};
exports.default = Component;
;