round out scrollbar

This commit is contained in:
cirroskais 2024-04-21 05:49:51 -04:00
parent f47a49a06c
commit 8150a25ffd
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D

View file

@ -27,17 +27,19 @@ body {
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 3.5px; width: 2px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0);
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: #c4bef3; background-color: #c4bef3;
border-radius: 10rem;
border: 1px solid #c4bef3;
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-track-piece:start {
background: #9d98c2; background: transparent;
}
::-webkit-scrollbar-track-piece:end {
background: transparent;
} }