@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
30 lines (29 loc) • 817 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
margin: theme.spacing(2, 0),
'& .SCCustomAdv-wrap': {
width: '100%',
position: 'relative'
},
'& .SCCustomAdv-image': {
width: '100%'
},
'& .SCCustomAdv-embed-code': {
width: '100%'
},
'& .SCCustomAdv-prefixed-height': {
position: 'absolute',
top: 0,
left: 0,
bottom: 0,
right: 0
}
}),
skeletonRoot: ({ theme }) => ({}),
dialogRoot: ({ theme }) => ({})
}
};
exports.default = Component;
;