increase scrollbar contrast

This commit is contained in:
Marco Blessing 2021-04-13 12:03:45 +02:00 committed by GitHub
parent 3f8a4dbc62
commit 4f1aee2c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -49,14 +49,15 @@ pre code::-webkit-scrollbar {
} }
pre code::-webkit-scrollbar-thumb { pre code::-webkit-scrollbar-thumb {
background: $gray-200; background: $gray-400;
} }
pre code:hover { pre code:hover {
scrollbar-width: thin; scrollbar-width: thin;
scrollbar-color: $gray-200 transparent; scrollbar-color: $gray-500 transparent;
} }
pre code::-webkit-scrollbar-thumb:hover { pre code::-webkit-scrollbar-thumb:hover {
background: $gray-200; background: $gray-500;
} }