mirror of
https://github.com/owncast/owncast.git
synced 2024-12-22 09:14:47 +03:00
17 lines
259 B
SCSS
17 lines
259 B
SCSS
|
.container {
|
||
|
display: grid;
|
||
|
width: 100%;
|
||
|
justify-items: center;
|
||
|
|
||
|
.player,
|
||
|
.poster {
|
||
|
// position: static;
|
||
|
// height: auto !important;
|
||
|
width: 100%;
|
||
|
grid-column: 1;
|
||
|
grid-row: 1;
|
||
|
aspect-ratio: 16 / 9;
|
||
|
max-height: 75vh;
|
||
|
}
|
||
|
}
|