Move away from native scrollbars and use customized one

Move away from native scrollbars and use customized ones, so it will look more beautiful

I use Stylus Extension to custom my scrollbar

/* Custom Scrollbar */
    /* width */
    ::-webkit-scrollbar {
        width: 10px;
    }
  
    /* Track */
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
  
    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #3aedfe;
    }
  
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #9af6fe;
    }

3 Likes

the problem is that every OS is different, I prefer to keep Kinopio as agnostic as possible and let the operating system do what it does best. That being said, I definitely recommend the use of custom style sheet browser extensions

3 Likes