From d36bd06b7bee1ee795a50d22c18f5e62c63025b2 Mon Sep 17 00:00:00 2001 From: Vlad Piersec Date: Fri, 24 Sep 2021 13:23:27 +0300 Subject: [PATCH] fix(chat): Hide scroll bar on chat input Based on this suggestion https://github.com/jitsi/jitsi-meet/issues/9958 --- css/_chat.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/_chat.scss b/css/_chat.scss index b3a2cdf4bd..20c5486613 100644 --- a/css/_chat.scss +++ b/css/_chat.scss @@ -213,6 +213,7 @@ } #usermsg { + -ms-overflow-style: none; border: 0px none; border-radius:0; box-shadow: none; @@ -221,8 +222,13 @@ padding: 10px; overflow-y: auto; resize: none; + scrollbar-width: none; width: 100%; word-break: break-word; + + &::-webkit-scrollbar { + display: none; + } } #usermsg:hover {