@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
31 lines (30 loc) • 879 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
color: theme.palette.primary.main,
marginTop: theme.spacing(0.5),
marginBottom: theme.spacing(0.5),
borderRadius: '50%',
padding: theme.spacing(1.5),
minWidth: 0,
'& .MuiIcon-root': {
fontSize: '1.57rem'
},
'&.MuiButton-sizeSmall': {
padding: theme.spacing(0.5),
'& .MuiIcon-root': {
fontSize: '1rem'
}
}
}),
popperRoot: () => ({
zIndex: 1400,
'& .SCVoteButton-reaction .MuiIcon-root': {
fontSize: '30px'
}
})
}
};
exports.default = Component;
;