We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 */ }
The text was updated successfully, but these errors were encountered:
Can you provide some isolated reproduction where we can reproduce the issue? Notice your concern is only on sections using scrollOverflow.
This example looks ok to me on iOS: https://github.com/alvarotrigo/fullPage.js/blob/master/src/js/resize.js#L219
Sorry, something went wrong.
No branches or pull requests
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
to
The text was updated successfully, but these errors were encountered: