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%'
|
|
}
|
|
};
|