Files
jitsi-meet/react/features/welcome/components/constants.js
2022-01-10 19:21:51 +01:00

17 lines
398 B
JavaScript

// @flow
import BaseTheme from '../../base/ui/components/BaseTheme';
export const drawerContentOptions = {
drawerActiveBackgroundColor: BaseTheme.palette.ui12,
drawerActiveTintColor: BaseTheme.palette.screen01Header,
drawerLabelStyle: {
marginLeft: BaseTheme.spacing[2]
},
drawerStyle: {
backgroundColor: BaseTheme.palette.ui12,
width: '54%'
}
};