-
Notifications
You must be signed in to change notification settings - Fork 13
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
Table of contents sidebar is too far down the page #139
Comments
Agreed that this is the root cause. Transferring this to Parent where I think we should set the |
The parent theme 3 column layout has been updated for compatibility with Gutenberg 18.5. This change makes the scrollbar container compatible. The logic is simplified so that the padding and margin aren't factors. See WordPress/wporg-parent-2021#139
The parent theme 3 column layout has been updated for compatibility with Gutenberg 18.5. This change makes the scrollbar container compatible. The logic is simplified so that the padding and margin aren't factors. See WordPress/wporg-parent-2021#139
Gutenberg 18.5 added position:relative to all constrained blocks, breaking the 3 column layout. This change adds makes the layout less brittle by defining it's own positioning context, and adjusts position of the children accordingly. See #139
Gutenberg 18.5 added position:relative to all constrained blocks, breaking the 3 column layout. This change adds makes the layout less brittle by defining it's own positioning context, and adjusts position of the children accordingly. See #139
The parent theme 3 column layout has been updated for compatibility with Gutenberg 18.5. This change makes the scrollbar container compatible. The logic is simplified so that the padding and margin aren't factors. See WordPress/wporg-parent-2021#139
Fix 3 column layout for compatibility with Gutenberg 18.5 See WordPress/wporg-parent-2021#139
@adamwoodnz Is there anything else to wrap up for this issue? |
Nope, we're done! |
Gutenberg 18.5 added position:relative to all constrained blocks, breaking the 3 column layout. This change adds makes the layout less brittle by defining it's own positioning context, and adjusts position of the children accordingly. See WordPress/wporg-parent-2021#139
When scrolled to the top of the page, the table of contents sidebar is too far offset.
This seems to be new with the Gutenberg update, because constrained blocks now get
position:relative
https://github.com/WordPress/gutenberg/blob/trunk/packages/block-library/src/group/style.scss#L6I'm not sure if we should unset the position:relative or adjust the top spacing on the sidebar.
The text was updated successfully, but these errors were encountered: