mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 14:20:54 +03:00
fix(web): make video embed player fit entire window. Closes #3587
This commit is contained in:
parent
c58240ce53
commit
82d0b9c121
1 changed files with 6 additions and 2 deletions
|
@ -1,6 +1,10 @@
|
||||||
.onlineContainer {
|
.onlineContainer {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background-color: var(--theme-color-components-video-status-bar-background);
|
background-color: var(--theme-color-components-video-status-bar-background);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
|
:global(#player) {
|
||||||
|
height: calc(100vh - var(--status-bar-height));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue