This (red arrow) scrollbars showed up in my app because I'm using redux-lazy-scroll
and I have a question: is it possible to hide that particular scrollbar?
I tried
::-webkit-scrollbar {
display: none;
}
But it hides all scrollbars (that green arrow one too) and I don't want that.
Any ideas how to crack it?
And sorry but I don't know how to reproduce this strange additional scrollbars behavior of redux-lazy-scroll
with Minimal, Complete, and Verifiable example
.