scrollbar style using scss code example
Example 1: custom scroll bar
*::-webkit-scrollbar {
width: 10px;
}
*::-webkit-scrollbar-track {
background: #f1f1f1;
}
*::-webkit-scrollbar-thumb {
background: #888;
}
*::-webkit-scrollbar-thumb:hover {
background: #555;
}
Example 2: scrollbar css
.any-class::-webkit-scrollbar {
width: 8px;
}
.any-class::-webkit-scrollbar-track {
background: #c1c0c0;
}
.any-class::-webkit-scrollbar-thumb {
background: #828282;
}
.any-class::-webkit-scrollbar-thumb:hover {
background: #555;
}