Fix embedded status bar being cut off (#3352)
* Fix embedded status bar being cut off This should resolve https://github.com/owncast/owncast/issues/3210. As recommended in the discussion, flexbox was the way to solve this issue. The main thing that needed to be addressed though was not applying too many constraints on the OwncastPlayer component just because it was embedded. By removing the embedded constraints, styling appears to be working as expected. I'll attach screenshots to the pull request. * Fix eslint error
This commit is contained in:
committed by
GitHub
parent
0b16a2f831
commit
9a7925444f
@@ -1,8 +1,6 @@
|
||||
.onlineContainer {
|
||||
height: 96vh;
|
||||
height: 100vh;
|
||||
background-color: var(--theme-color-components-video-status-bar-background);
|
||||
|
||||
@media only screen and (width <= 768px) {
|
||||
height: 100vh;
|
||||
}
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user