stream/src/components/Video/styles.js
Benjamin Jones f1bd7697fa commit latest 🙃
2021-03-26 10:45:10 +01:00

25 lines
459 B
JavaScript

import styled from 'styled-components'
export const VideoWrapper = styled.div`
width: 100vw;
height: 100vh;
z-index: 1;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* pointer-events: none; */
cursor: ${props => (props.$active ? 'pointer' : 'none')};
`
export const Iframe = styled.iframe`
width: 100vw;
height: 100vh;
`
export const Overlay = styled.div`
z-index: 2;
position: fixed;
height: 100vh;
width: 100vw;
`