Fix video overflowing player area

pull/248/head
ElementalAlchemist 3 years ago committed by Mike Lang
parent 9750cbd728
commit 11bf89305a

@ -82,7 +82,6 @@ a,
#video { #video {
width: 100%; width: 100%;
max-height: 50vh; max-height: 50vh;
overflow: hidden;
} }
/* START BLOCK /* START BLOCK
@ -120,7 +119,7 @@ a,
* so the size of the video is reduced by the progress bar height here. * so the size of the video is reduced by the progress bar height here.
*/ */
#video .vjs-tech { #video .vjs-tech {
height: calc(50vh - 33px); height: calc(100% - 33px);
} }
#clip-bar { #clip-bar {

Loading…
Cancel
Save