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