fix(chat): Hide scroll bar on chat input

Based on this suggestion https://github.com/jitsi/jitsi-meet/issues/9958
This commit is contained in:
Vlad Piersec 2021-09-24 13:23:27 +03:00 committed by vp8x8
parent 35e363577c
commit d36bd06b7b
1 changed files with 6 additions and 0 deletions

View File

@ -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 {