You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a great service. Thanks for setting it up. Using Chrome on an iPhone5, I'm not able to get the generic iFrame to scroll, which is a problem if the iFrame content is larger than the iFrame.
It might help to add something like this:
@media screen and (-webkit-min-device-pixel-ratio:0) and (max-device-width : 1024px) {
#genericpreview .embed-container{
-webkit-overflow-scrolling: touch; /iframes should scroll/
overflow-y: scroll; /iframes should scroll, but this rule will cause two scroll bars in chrome on windows/
overflow-x: scroll;
}
}
I'll submit a similar pull request.
The text was updated successfully, but these errors were encountered:
This is a great service. Thanks for setting it up. Using Chrome on an iPhone5, I'm not able to get the generic iFrame to scroll, which is a problem if the iFrame content is larger than the iFrame.
It might help to add something like this:
@media screen and (-webkit-min-device-pixel-ratio:0) and (max-device-width : 1024px) {
#genericpreview .embed-container{
-webkit-overflow-scrolling: touch; /iframes should scroll/
overflow-y: scroll; /iframes should scroll, but this rule will cause two scroll bars in chrome on windows/
overflow-x: scroll;
}
}
I'll submit a similar pull request.
The text was updated successfully, but these errors were encountered: