mateimarica / mateimarica.dev

Personal website with an Express.js backend.
https://mateimarica.dev
MIT License
0 stars 0 forks source link

Make scroll bar dark theme on all subdomains #7

Closed mateimarica closed 2 years ago

mateimarica commented 2 years ago

Just like how its done on files.mateimarica.dev

/* width */
::-webkit-scrollbar {
    width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #131416;;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #3a3f44;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}