@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
25 lines (24 loc) • 721 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
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 }) => ({})
}
};
exports.default = Component;