@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 641 B
JavaScript
const Component = {
styleOverrides: {
root: ({ theme }) => ({
textAlign: 'center',
marginBottom: theme.spacing(2),
'& div:last-child': {
paddingBottom: theme.spacing(2)
},
'& .MuiCardContent-root': {
' > .MuiButton-sizeMedium': {
marginLeft: -3,
marginTop: -1
}
},
'& .SCFeedUpdatesWidget-button-load-more': {
textTransform: 'capitalize'
}
}),
skeletonRoot: ({ theme }) => ({})
}
};
export default Component;