jiti-meet/react/features/overlay/components/native/styles.js

25 lines
482 B
JavaScript
Raw Normal View History

2019-04-09 11:05:20 +00:00
// @flow
import { StyleSheet } from 'react-native';
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
/**
2019-04-09 15:53:12 +00:00
* The React {@code Component} styles of the overlay feature.
*/
2019-04-09 15:53:12 +00:00
export default {
/**
* Style for a backdrop overlay covering the screen the the overlay is
* rendered.
*/
container: {
...StyleSheet.absoluteFillObject,
backgroundColor: BaseTheme.palette.ui00
2019-04-09 15:53:12 +00:00
},
2019-03-06 16:28:59 +00:00
safeContainer: {
flex: 1
}
2019-04-09 15:53:12 +00:00
};