Webkit-scrollbars to thin

Ubuntu 18.04.1, apache 2.4, php-7.2, hopefully latest git while writing, 1680x1050 screenresolution

Every webkit-scrollbar is to thin.

/css/tt-rss.less:1270
::-webkit-scrollbar {
/* width: 4px; */
}

I checked this with Iron-69 in dev-mode. After switching off the scrollbar is 17px thick. Perhaps 8 or 10 would be enough also for 4k.

nobody is stopping you from making scrollbars as as thicc as you like through user css

Thanks for pointing in the right direction, this solved my problem:

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

Hmm, that did not work for me, but using the inspector I found the following did work:

body.flat.ttrss_main ::-webkit-scrollbar {
    width: 12px;
}

This is probably due to my initial view being different from yours?