@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
29 lines (28 loc) • 799 B
JavaScript
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'
}
})
}
};
export default Component;