Merge pull request #1125 from hgiesel/scrollbarcorner

Color Scrollbar bottom right corner
This commit is contained in:
Damien Elmes 2021-04-14 12:43:34 +10:00 committed by GitHub
commit 7b2b4528b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@
@mixin night-mode {
&::-webkit-scrollbar {
background: var(--window-bg);
background-color: var(--window-bg);
&:horizontal {
height: 12px;
@ -29,4 +29,8 @@
min-height: 50px;
}
}
&::-webkit-scrollbar-corner {
background-color: var(--window-bg);
}
}