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 363B

123456789101112131415161718192021222324
  1. /**
  2. * Make video element fill its container.
  3. */
  4. const video = {
  5. flex: 1,
  6. objectFit: 'cover',
  7. width: '100%'
  8. };
  9. /**
  10. * Transform local videos to behave like a mirror.
  11. */
  12. const mirroredVideo = {
  13. ...video,
  14. transform: 'scaleX(-1)'
  15. };
  16. /**
  17. * Web-specific styles for media components.
  18. */
  19. export const styles = {
  20. mirroredVideo,
  21. video
  22. };