Custom Scrollbar

I have added custom scrollbar it just look cool
thank you sir.
pull/50/head
ullas kunder 5 years ago committed by GitHub
parent 2c455d26f3
commit 5370d98dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -52,6 +52,29 @@ body {
outline: none;
}
/* custom scrollbar */
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #00bbff;
border-radius: 20px;
border: 6px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #a8bbbf;
}
/* end of custom scrollbar*/
.user-list {
background-color: #fff;
list-style-type: none;

Loading…
Cancel
Save