Currently the scrollbar will be hide when the mouse move out the scrollbar container, is it possible to auto hide the scrollbar when no mouse action such as in 5 seconds?
Make sure these boxes are checked before submitting your issue -- thank you!
A very good question.
another question - is it possible to not hide it, but make always visible?
@seyfer If you wanted to force the scrollbar to always be visible you can do that by overriding the class, e.g. for the vertical scrollbar:
.ps__rail-y {
display: block !important;
opacity: 0.6 !important;
}
You could do the same for the horizontal scrollbar too using the .ps__rail-x class
Most helpful comment
A very good question.
another question - is it possible to not hide it, but make always visible?