forxtu
9/28/2017 - 10:31 AM

Custom scrollbar

change scroll bar to custom with CSS selectors

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.10);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(56, 56, 56, 0.20);
}