react-custom-scrollbars
react-custom-scrollbars copied to clipboard
Scrollbars appears after zoom website out
This simple issue is related to subpixel calculation.
getThumbHorizontalWidth() {
...
if (trackWidth === width) return 0;
getThumbVerticalHeight() {
...
if (trackHeight === height) return 0;
Please use trackWidth <= width and trackHeight <= height instead and it fixes zoom.
fixed in https://github.com/RobPethick/react-custom-scrollbars-2 thanks to @lwolczynski