2018-05-23 12:30:22 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
2019-03-06 16:28:59 +00:00
|
|
|
import { ColorPalette, createStyleSheet } from '../../base/styles';
|
2017-11-24 15:23:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The React {@code Component} styles of {@code OverlayFrame}.
|
|
|
|
*/
|
|
|
|
export const overlayFrame = createStyleSheet({
|
|
|
|
/**
|
|
|
|
* Style for a backdrop overlay covering the screen the the overlay is
|
|
|
|
* rendered.
|
|
|
|
*/
|
|
|
|
container: {
|
2018-05-23 12:30:22 +00:00
|
|
|
...StyleSheet.absoluteFillObject,
|
2019-03-06 16:28:59 +00:00
|
|
|
backgroundColor: ColorPalette.black
|
2017-11-24 15:23:40 +00:00
|
|
|
},
|
|
|
|
|
2019-03-06 16:28:59 +00:00
|
|
|
safeContainer: {
|
|
|
|
flex: 1
|
2017-11-24 15:23:40 +00:00
|
|
|
}
|
|
|
|
});
|