Issue :
I am facing an issue where I am trying to make a video fill the entire screens height and width, but for some reason it is not filling the container I have wrapped around it.
The
<video>
is wrapped inside a<div>
with the following CSS styling:
Snippet :
videoContainer: {
height: '100vh'
},
video: {
objectFit: 'cover'
}