From 8695beb7caede97657775ea5d55c892c7156413a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Thu, 22 Jul 2021 10:03:22 +0200 Subject: [PATCH] Fix overflow issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- res/css/views/voip/_CallViewSidebar.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/res/css/views/voip/_CallViewSidebar.scss b/res/css/views/voip/_CallViewSidebar.scss index 57989fb8f7..79bf3cbf09 100644 --- a/res/css/views/voip/_CallViewSidebar.scss +++ b/res/css/views/voip/_CallViewSidebar.scss @@ -20,7 +20,9 @@ limitations under the License. bottom: 16px; z-index: 100; // To be above the primary feed - height: 100%; + overflow: auto; + + height: calc(100% - 32px); // Subtract the top and bottom padding width: 20%; display: flex;