nxapi icon indicating copy to clipboard operation
nxapi copied to clipboard

Suggestion: Better Themed Scrollbars?

Open CarJem opened this issue 2 years ago • 1 comments

Chromium Default Scrollbars don't really fit the overall app... I have made a css mockup of a more fitting change

/* width */
::-webkit-scrollbar {
    height: 6px;
    width: 6px;
    
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
    margin: 6px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border: 6px;
    border-radius: 6px;
    
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

image

CarJem avatar Jul 28 '23 19:07 CarJem

You may want to give this a test in splatnet 3, the scrollbars get a little weird there iirc

AAGaming00 avatar Jul 28 '23 23:07 AAGaming00