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

1234567891011121314151617181920212223
  1. import { ColorPalette, createStyleSheet } from '../../base/styles';
  2. /**
  3. * Size for the Avatar.
  4. */
  5. export const AVATAR_SIZE = 200;
  6. export default createStyleSheet({
  7. /**
  8. * Large video container style.
  9. */
  10. largeVideo: {
  11. alignItems: 'stretch',
  12. backgroundColor: ColorPalette.appBackground,
  13. bottom: 0,
  14. flex: 1,
  15. justifyContent: 'center',
  16. left: 0,
  17. position: 'absolute',
  18. right: 0,
  19. top: 0
  20. }
  21. });