Skip to content

Instantly share code, notes, and snippets.

@bpb54321
Created July 20, 2017 20:26
Show Gist options
  • Save bpb54321/0d2f85a8ad745ce5be88860878ab13c3 to your computer and use it in GitHub Desktop.
Save bpb54321/0d2f85a8ad745ce5be88860878ab13c3 to your computer and use it in GitHub Desktop.
Fix for keeping body from scrolling when there is an overlay on iOS Safari 10.
body {
overflow-y: scroll;
&.js-nav-menu-open,
&.js-social-menu-open,
&.js-search-menu-open {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment