support icon indicating copy to clipboard operation
support copied to clipboard

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

Open styromaniac opened this issue 4 years ago • 0 comments

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
    }

styromaniac avatar Nov 01 '21 06:11 styromaniac