How to prevent white space "bounce" after scrolling to the top of the page and the bottom
I had similar issue this worked for me.
html {
overflow: hidden;
height: 100%;
}
body {
overflow: auto;
height: 100%;
}
So, the accepted answer doesn't work for me. I have to use https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior
So,
html, body {
overscroll-behavior: none;
}