Color in the Scrollbar corner at the bottom right into the appropriate color

This commit is contained in:
Henrik Giesel 2021-04-13 21:41:15 +02:00
parent 18f03d5cb1
commit f891a98087

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);
}
}