SamsungInternet / support

For general Samsung Internet support. You can use the Issues register here as a way to ask support questions.
MIT License
18 stars 0 forks source link

Styled scrollbars cause horrible flickering, especially on sites with side panel menus #108

Open styromaniac opened 2 years ago

styromaniac commented 2 years ago

Try this CSS on a site with a side panel menu:

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

    ::-webkit-scrollbar-track {
        background: 0 0;
        border-radius: 5px
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(180,180,180,.5);
        border-radius: 5px
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #af3bff
    }