@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 596 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
marginTop: 0,
'& .SCCategoryTemplate-feed': {
marginTop: theme.spacing(2)
},
'& .SCGroupInfoWidget-root': {
marginTop: theme.spacing(2)
}
}),
skeletonRoot: ({ theme }) => ({
marginTop: 0,
[theme.breakpoints.up('md')]: {
marginTop: 30
}
})
}
};
exports.default = Component;
;