@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
33 lines (32 loc) • 1.04 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
height: '100vh',
width: '100%',
overflowY: 'hidden'
}),
dialogRoot: ({ theme }) => ({
[`& .SCLiveStreamVideoConference-end-conference-wrap`]: {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
alignContent: 'center',
flexDirection: 'column',
textAlign: 'center',
[`& .SCLiveStreamVideoConference-logo`]: {
img: {
maxHeight: 70,
maxWidth: 300
},
marginBottom: theme.spacing(2)
},
[`& .SCLiveStreamVideoConference-btn-back-home`]: {
marginTop: theme.spacing(2)
}
}
})
}
};
exports.default = Component;
;