owncast/web/components/video/OwncastPlayer/OwncastPlayer.module.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;
}
}