custom scrollbar for Chrome-based browsers

This commit is contained in:
Phuntsok Drak-pa 2019-09-11 18:55:02 +02:00
parent a842f081d3
commit b2a1601833
1 changed files with 19 additions and 0 deletions

View File

@ -176,6 +176,25 @@ h5 {
font-weight: 300;
}
/* scrollbar *****************************************************************/
/* width */
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #7f8c8d;
border-radius: 10px;
}
/* Theme switcher ************************************************************/
.themeBtn {