Fix player height on mobile

pull/3313/head
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
1 changed files with 5 additions and 1 deletions

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;
}
}
}