mirror of
https://github.com/owncast/owncast.git
synced 2024-12-26 11:08:43 +03:00
25 lines
342 B
SCSS
25 lines
342 B
SCSS
@import '../../../styles/mixins.scss';
|
|
|
|
.container {
|
|
display: grid;
|
|
width: 100%;
|
|
justify-items: center;
|
|
height: 75vh;
|
|
aspect-ratio: 16 / 9;
|
|
|
|
@media (max-width: 1200px) {
|
|
height: 100%;
|
|
max-height: 75vh;
|
|
}
|
|
|
|
.player,
|
|
.poster {
|
|
width: 100%;
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
}
|
|
}
|
|
|
|
.fill {
|
|
max-height: unset;
|
|
}
|