Merge pull request #394 from sharetribe/bugfix-modal-fixed-needs-width

css.scrollingDisabled needs width: 100vw
This commit is contained in:
Vesa Luusua 2017-09-12 13:34:39 +03:00 committed by GitHub
commit eba6121810

View file

@ -12,7 +12,9 @@
}
.scrollingDisabled {
/* position: fixed and width are added to prevent iOS from scrolling content */
position: fixed;
width: 100vw;
height: 100vh;
overflow: hidden;
position: fixed;
}