@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
27 lines (26 loc) • 760 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .MuiDialogTitle-root': {
textAlign: 'center',
fontSize: '20px',
fontWeight: 600
},
'& .MuiDialogContent-root': {
display: 'flex',
minHeight: 200,
justifyContent: 'center',
alignItems: 'center',
'& .SCWidget-root': {
minWidth: 310
},
'& .MuiTypography-body2': {
marginTop: theme.spacing(1)
}
}
})
}
};
exports.default = Component;
;