mirror of
https://github.com/owncast/owncast.git
synced 2024-12-24 01:58:28 +03:00
20 lines
288 B
SCSS
20 lines
288 B
SCSS
@import '../../../styles/mixins.scss';
|
|
|
|
.container {
|
|
display: grid;
|
|
width: 100%;
|
|
justify-items: center;
|
|
height: 78vh;
|
|
|
|
@include screen(tablet) {
|
|
aspect-ratio: 16 / 9;
|
|
height: unset;
|
|
}
|
|
|
|
.player,
|
|
.poster {
|
|
width: 100%;
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
}
|
|
}
|