Skip to content

Commit

Permalink
fix(ui): split css rules
Browse files Browse the repository at this point in the history
  • Loading branch information
DerYeger committed Feb 5, 2022
1 parent daa2ac4 commit c51a98d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/ui/client/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,14 @@ html.dark {
background: var(--cm-ttc-c-track);
}
.CodeMirror-scroll::-webkit-scrollbar-thumb,
.scrolls::-webkit-scrollbar-thumb {
background-color: var(--cm-ttc-c-thumb);
border: 2px solid var(--cm-ttc-c-thumb);
}
.CodeMirror-scroll::-webkit-scrollbar-thumb,
.scrolls::-webkit-scrollbar-thumb,
.scrolls-rounded::-webkit-scrollbar-track {
background-color: var(--cm-ttc-c-thumb);
border-radius: 3px;
border: 2px solid var(--cm-ttc-c-thumb);
}
.CodeMirror-scroll::-webkit-scrollbar-corner,
.scrolls::-webkit-scrollbar-corner {
Expand Down

0 comments on commit c51a98d

Please sign in to comment.