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 {
|
||||
height: 100vh;
|
||||
background-color: var(--theme-color-components-video-status-bar-background);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
:global(#player) {
|
||||
height: calc(100vh - var(--status-bar-height));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue