White space/ to much scroll in mobile apps

Also, I noticed this problem in other wrapped/native apps.
Is there any way or tricks to remove overscroll?

My settings:

You could try to add custom css:

body {
  overscroll-behavior-y: none;
}

But be aware that this disables also pull-to-refresh, glow effects and scroll chaining.

1 Like

Thanks @daviddr17
but
not supported by Safari and iOS , since version +15.0 and iOS 12.0

Has anyone gotten this overscroll suppression to work?

To be clear do I just need to “overscroll-behavior-y: none;” into the Page HMTL section for the Page, or does the line need to be wrapped by tags or something else?

Sorry, newbie to CSS.

Thanks!

just overscroll-behavior: none in the tag
but if you doing native app, on iOS +15 it doesn’t support this code

2 Likes

Thanks!