@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
28 lines (27 loc) • 845 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
padding: theme.spacing(1),
minWidth: 'auto'
}),
dialogRoot: ({ theme }) => ({
'& .MuiDialogContent-root': {
paddingLeft: theme.spacing(2)
},
'& .SCChangePictureButton-images-list': {
maxHeight: 500
},
'& .SCChangePictureButton-image-item': {
'& .MuiImageListItemBar-actionIcon, .MuiIconButton-root': {
color: theme.palette.common.white
},
'& .SCChangePictureButton-primary': {
border: 'solid'
}
}
})
}
};
exports.default = Component;