misenhower / splatoon3.ink

🦑 Splatoon 3 map rotations, Salmon Run schedules, SplatNet gear, and more
https://splatoon3.ink
MIT License
229 stars 21 forks source link

[Visual Improvement] Add a dark scrollbar for chrome & safari #77

Open LilyKensa opened 3 months ago

LilyKensa commented 3 months ago

As the title says, when using chrome, we got a very white scrollbar that conflicts a lot with the website's style.

image

I hope we got something like this instead:

image

My CSS code:

body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

body::-webkit-scrollbar-thumb {
    background-color: #515151;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #5b5b5b;
}
body::-webkit-scrollbar-thumb:active {
    background-color: #6d6d6d;
}

body::-webkit-scrollbar-track {
    background-color: #161616;
}