Disable page over-scrolling behaviour

On some browsers page can be scrolled down even when there is no real scroll and white space is shown. To disable this one can add the code below into the app settings custom code header area.

<style>
body {
  overscroll-behavior-y: none;
}
</style>
2 Likes