I have a big video that I want to put on my page, when I try to make it smaller it doesn't let me. I'm using the 'video-react' library. Here's my code:
<Player fluid={false} width={"330px"} height={"500px"} id="videoplayer" className="react-player" autoPlay={true} loop muted
ref={player => {
this.player = player;
}} videoId="video-1">
<source src={this.state.playerSource} />
</Player>
I tried multiple variations and nothing works. Please help.