-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
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
Allow scrolling a sandbox in Safari #102
Comments
Thanks for reporting this! Hmm, this is strange. I'm able to scroll the
iframe (I'm on phone though). What browser are you using?
…On Thu, Aug 10, 2017, 14:30 Haroen Viaene ***@***.***> wrote:
When making bigger things, it's useful to be able to scroll. I think
somewhere in the styles iframe { overflow: hidden;} is specified, which
will disable someone from scrolling through a code sandbox.
An example is: https://codesandbox.io/s/7LD7EJ14r
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#102>, or mute the
thread
<https://github.com/notifications/unsubscribe-auth/AAj1CENg0YPaViS_rkTLT46ap6nOesDmks5sWvf2gaJpZM4OzW4X>
.
|
Safari Technology Preview Release 36 (Safari 11.0, WebKit 12604.1.32.0.1), just checked and it's possible to scroll in Chrome |
Found a workaround, by adding this css inside the html {
height: 100%;
}
body {
height: 100%;
overflow: auto;
} Not exactly sure why it's needed, and where I should add it though |
I just realised that this is a bug in Safari Technology Preview and will probably be fixed at the next release. It's not present in the main version, and we can also see this bug on codepen. Let's close this as out of scope for now. |
This magically became fixed a few days ago. 🆒 |
When making bigger things, it's useful to be able to scroll. I think somewhere in the styles
iframe { overflow: hidden;}
is specified, which will disable someone from scrolling through a code sandbox.An example is: https://codesandbox.io/s/7LD7EJ14r
The text was updated successfully, but these errors were encountered: