Fix up scrollbar colors so it's visible in the channel list

This commit is contained in:
Pavel Djundik 2018-12-31 16:01:44 +02:00 committed by GitHub
parent 3da845e7c8
commit 022d9e1734
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -29,7 +29,15 @@
}
::-webkit-scrollbar-thumb:vertical {
background: var(--background-light-color);
background: hsl(192, 100%, 25%);
}
::-webkit-scrollbar-thumb:vertical:hover {
background: hsl(192, 100%, 30%);
}
::-webkit-scrollbar-thumb:vertical:active {
background: hsl(192, 100%, 40%);
}
html {