mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 17:57:49 +00:00
17 lines
398 B
JavaScript
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%'
|
|
}
|
|
};
|