Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/**
* omegleapp.me - scrollbars are not hidden, or are too wide.
*
* They are using non-standard webkit-scrollbar CSS to style scrollbars.
* We can use scrollbar-width instead to fix them.
*/
.chatAndVideo .chatSection .chatBox_messages {
scrollbar-width: thin;
}
.chatAndVideo .chatSection .chatBox {
scrollbar-width: none;
}