Skip to content

Commit

Permalink
fix(ui): hide native codemirror scrolls on firefox (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin committed Apr 5, 2022
1 parent a1188b5 commit cf226c5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/ui/client/styles/main.css
Expand Up @@ -130,6 +130,10 @@ html.dark {
}

/* CODEMIRROR SCROLLS */
.CodeMirror-scroll {
/* hide FF native scrolls */
scrollbar-width: none;
}
.CodeMirror-scroll::-webkit-scrollbar,
.codemirror-scrolls::-webkit-scrollbar {
display: none;
Expand Down

0 comments on commit cf226c5

Please sign in to comment.