### Description The current script does not calculate the viewport height correctly on Phones. Please update following https://github.com/alvarotrigo/fullPage.js/blob/master/src/css/fullpage.css#L247-L249 from ``` body:not(.fp-responsive) .fp-overflow{ max-height: 100vh; } ``` to ``` body:not(.fp-responsive) .fp-overflow{ max-height: 100vh; max-height: 100dvh; /* fix for new browsers */ } ```