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
Since the inspector is just a container placed in the <body> when it's open, it can cover some elements on the page:
<body>
My scroll is at the end of the window.
If the inspector is collapsed, elements that were hidden, now are visible:
Scroll at the same position.
By adding the padding-top with the same value as the inspector height, we can resolve the issue:
padding-top
Now I can scroll below and the editor displays the UI.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since the inspector is just a container placed in the
<body>
when it's open, it can cover some elements on the page:My scroll is at the end of the window.
If the inspector is collapsed, elements that were hidden, now are visible:
Scroll at the same position.
By adding the
padding-top
with the same value as the inspector height, we can resolve the issue:Now I can scroll below and the editor displays the UI.
The text was updated successfully, but these errors were encountered: