From 8b41fa7a20d7b20fbe04e1590a17f31ff518eeec Mon Sep 17 00:00:00 2001 From: John Livingston Date: Wed, 17 Nov 2021 11:57:52 +0100 Subject: [PATCH] ConverseJS Peertube theme: bigger occupants sidebar when width is not big enough. --- conversejs/custom/sass/_peertubetheme.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/conversejs/custom/sass/_peertubetheme.scss b/conversejs/custom/sass/_peertubetheme.scss index fa6b9acc..f700ee8b 100644 --- a/conversejs/custom/sass/_peertubetheme.scss +++ b/conversejs/custom/sass/_peertubetheme.scss @@ -11,4 +11,17 @@ } } } + + // Bigger occupants sidebar when width is not big enough. + @media screen and (max-width: 576px) { + .chatroom { + .box-flyout { + .chatroom-body { + .occupants { + min-width: 50%; + } + } + } + } + } }