mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 11:39:08 +03:00
16 lines
259 B
SCSS
16 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;
|
|
}
|
|
}
|