@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
21 lines (20 loc) • 645 B
JavaScript
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .MuiTypography-root': {
marginBottom: theme.spacing(2)
},
'& .SCAccountDataPortability-create-button': {
marginRight: theme.spacing(2),
marginBottom: theme.spacing()
},
'& .SCAccountDataPortability-download-button': {
marginBottom: theme.spacing()
},
'& .SCAccountDataPortability-generation-info': {
fontWeight: theme.typography.fontWeightBold
}
})
}
};
export default Component;