You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 482B

123456789101112131415161718192021222324
  1. // @flow
  2. import { StyleSheet } from 'react-native';
  3. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  4. /**
  5. * The React {@code Component} styles of the overlay feature.
  6. */
  7. export default {
  8. /**
  9. * Style for a backdrop overlay covering the screen the the overlay is
  10. * rendered.
  11. */
  12. container: {
  13. ...StyleSheet.absoluteFillObject,
  14. backgroundColor: BaseTheme.palette.ui00
  15. },
  16. safeContainer: {
  17. flex: 1
  18. }
  19. };