From eaa084722f9502b3ffcd278e58bafa0e2f42fe79 Mon Sep 17 00:00:00 2001 From: Vlad Piersec Date: Mon, 1 Nov 2021 14:35:00 +0200 Subject: [PATCH] fix(Chat): Place Chat pane above Participants pane on mobile web --- css/_participants-pane.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/_participants-pane.scss b/css/_participants-pane.scss index 619044ed0..3bc548a4e 100644 --- a/css/_participants-pane.scss +++ b/css/_participants-pane.scss @@ -56,3 +56,9 @@ border-radius: 3px; } } + +.mobile-browser.shift-right { + .participants_pane { + z-index: -1; + } +}