瀏覽代碼

fix(chat): Hide scroll bar on chat input

Based on this suggestion https://github.com/jitsi/jitsi-meet/issues/9958
master
Vlad Piersec 3 年之前
父節點
當前提交
d36bd06b7b
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. 6
    0
      css/_chat.scss

+ 6
- 0
css/_chat.scss 查看文件

@@ -213,6 +213,7 @@
213 213
 }
214 214
 
215 215
 #usermsg {
216
+    -ms-overflow-style: none;
216 217
     border: 0px none;
217 218
     border-radius:0;
218 219
     box-shadow: none;
@@ -221,8 +222,13 @@
221 222
     padding: 10px;
222 223
     overflow-y: auto;
223 224
     resize: none;
225
+    scrollbar-width: none;
224 226
     width: 100%;
225 227
     word-break: break-word;
228
+
229
+    &::-webkit-scrollbar {
230
+        display: none;
231
+    }
226 232
 }
227 233
 
228 234
 #usermsg:hover {

Loading…
取消
儲存