Add theme to scrollbar. (#153)

* Add theme to scrollbar.

* add firefox scroll bar color

Co-authored-by: simon <simobilleter@gmail.com>
This commit is contained in:
Nathan DeTar 2022-01-18 02:27:49 -08:00 committed by GitHub
parent 7028621bc5
commit 26bc2d2af4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,16 @@ font-family: 'Sen-Regular';
html {
height: 100%;
scrollbar-color: var(--accent-font-dark) #0000;
}
::-webkit-scrollbar {
width: 7px;
}
::-webkit-scrollbar-thumb {
background: var(--accent-font-dark);
border-radius: 10px;
}
body {