fix(chat): Hide scroll bar on chat input

Based on this suggestion https://github.com/jitsi/jitsi-meet/issues/9958
pull/8734/head jitsi-meet_6375
Vlad Piersec 3 years ago committed by vp8x8
parent 35e363577c
commit d36bd06b7b
  1. 6
      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 {

Loading…
Cancel
Save