Add basic CSS for front page stream wrappers

This commit is contained in:
Vencislav Atanasov 2024-10-31 01:20:18 +02:00
parent d2a08c7355
commit d464a4c181
1 changed files with 15 additions and 0 deletions

View File

@ -1017,3 +1017,18 @@ section.subtitle_content {
text-align: center;
margin-top: 18px;
}
/* front page stream players */
.stream_players_wrapper {
display: flex;
}
@media all and (max-width: 960px) {
.stream_players_wrapper {
flex-direction: column;
}
}
.stream_players_wrapper > * {
flex-grow: 1;
}