Add styles for scrollbars

This commit is contained in:
He4eT 2021-03-02 04:38:23 +05:00
commit 78fb34e2aa

View file

@ -34,10 +34,20 @@
border: var(--border-width) solid var(--main-color);
padding: var(--inner-padding);
scrollbar-color: hsl(0, 0%, 50%, 0.5) var(--bg-color);
scrollbar-color: var(--main-color) var(--bg-color);
scrollbar-width: thin;
}
.textBuffer::-webkit-scrollbar {
width: 8px;
}
.textBuffer::-webkit-scrollbar-thumb {
background-color: var(--main-color);
border: 4px solid var(--bg-color);
border-left-width: 0px;
}
.textBuffer > br:first-child,
.textBuffer > br:last-child,
.textBuffer > br + br + br {