You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
686 B
37 lines
686 B
@import '../../../styles/mixins.scss'; |
|
|
|
.container { |
|
display: grid; |
|
width: 100%; |
|
justify-items: center; |
|
height: var(--player-container-height); |
|
aspect-ratio: 16 / 9; |
|
|
|
@media (max-width: 1200px) { |
|
height: 100%; |
|
max-height: var(--player-container-height); |
|
} |
|
|
|
@include screen(desktop) { |
|
// prevent sidebar from overlapping stream |
|
// padding-right: 320px; |
|
} |
|
|
|
//set height of player for tablet |
|
@include screen(tablet) { |
|
height: var(--player-container-height); |
|
max-height: var(--player-container-height); |
|
} |
|
|
|
.player, |
|
.poster { |
|
width: 100%; |
|
grid-column: 1; |
|
grid-row: 1; |
|
} |
|
} |
|
|
|
.embedded { |
|
height: 100vh; |
|
max-height: unset; |
|
}
|
|
|