Fix player height on mobile
This commit is contained in:
parent
5c0904fc66
commit
dc13623baa
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue