@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
45 lines (44 loc) • 1.48 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
boxShadow: 'none',
position: 'relative',
display: 'flex',
flexWrap: 'wrap',
width: '100%',
paddingBottom: theme.spacing(),
'& .SCCommentsObject-load-more-comments-button': {
textTransform: 'initial',
padding: theme.spacing()
},
'& .SCCommentsObject-load-previous-comments-button': {
textTransform: 'initial',
padding: theme.spacing()
},
'& .SCCommentsObject-comments-counter': {
paddingRight: theme.spacing()
},
'& .SCCommentsObject-pagination-link': {
display: 'none'
},
'& .SCCommentsObject-pagination': {
width: '100%',
'& button': {
fontWeight: theme.typography.fontWeightLight,
textDecoration: 'underline',
textUnderlineOffset: 3,
textDecorationStyle: 'dashed'
},
'& .SCCommentsObject-comments-counter': {
fontSize: '0.8rem'
}
}
}),
skeletonRoot: ({ theme }) => ({
width: '100%'
})
}
};
exports.default = Component;