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
us-overlay--open
When using -webkit-overflow-scrolling: touch; inside an open overlay, when you reach the top/bottom of the overlay, the body will continue to scroll.
-webkit-overflow-scrolling: touch;
If we change the implementation in overlay.js to add the class to html instead and update the Sass to:
html
.us-overlay--active { &, & body { width: 100%; height: 100%; overflow: hidden; } }
This will fix overlays and allow people to use elastic scrolling within overlays.
The text was updated successfully, but these errors were encountered:
@greenie is this something we want to look at?
Sorry, something went wrong.
greenie
No branches or pull requests
When using
-webkit-overflow-scrolling: touch;
inside an open overlay, when you reach the top/bottom of the overlay, the body will continue to scroll.If we change the implementation in overlay.js to add the class to
html
instead and update the Sass to:This will fix overlays and allow people to use elastic scrolling within overlays.
The text was updated successfully, but these errors were encountered: