mirror of https://github.com/jitsi/jitsi-meet
parent
7770d59c93
commit
40128277bc
@ -1,22 +1,29 @@ |
||||
// @flow
|
||||
|
||||
import { ColorPalette } from '../../../base/styles'; |
||||
import BaseTheme from '../../../base/ui/components/BaseTheme.native'; |
||||
|
||||
export const INDICATOR_COLOR = ColorPalette.lightGrey; |
||||
|
||||
export const INDICATOR_COLOR = BaseTheme.palette.indicatorColor; |
||||
|
||||
export default { |
||||
indicatorWrapper: { |
||||
alignItems: 'center', |
||||
backgroundColor: ColorPalette.white, |
||||
backgroundColor: BaseTheme.palette.ui12, |
||||
height: '100%', |
||||
justifyContent: 'center' |
||||
}, |
||||
|
||||
sharedDocContainer: { |
||||
flex: 1 |
||||
backgroundColor: BaseTheme.palette.ui12, |
||||
flex: 1, |
||||
paddingRight: BaseTheme.spacing[3] |
||||
}, |
||||
|
||||
sharedDoc: { |
||||
marginBottom: BaseTheme.spacing[3] |
||||
}, |
||||
|
||||
webView: { |
||||
backgroundColor: 'rgb(242, 242, 242)' |
||||
backgroundColor: BaseTheme.palette.ui12 |
||||
} |
||||
}; |
||||
|
Loading…
Reference in new issue