From d464a4c181eb5c372401378cbafa31b757187894 Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Thu, 31 Oct 2024 01:20:18 +0200 Subject: [PATCH] Add basic CSS for front page stream wrappers --- css/styles.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/css/styles.css b/css/styles.css index e905360..12938f5 100644 --- a/css/styles.css +++ b/css/styles.css @@ -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; +}