1
0
Fork 0

Fix player height on mobile

This commit is contained in:
Chocobozzz 2020-11-13 14:49:27 +01:00
parent 5c0904fc66
commit dc13623baa
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -98,10 +98,14 @@ $video-info-margin-left: 44px;
}
@media screen and (max-width: 600px) {
#videojs-wrapper {
height: getPlayerHeight(100vw) !important;
}
.remote-server-down,
::ng-deep .video-js {
width: 100vw;
height: getPlayerHeight(100vw)
height: getPlayerHeight(100vw) !important;
}
}
}