fix(docs): enable sticky sidebar in CSS Grid layout#3864
Merged
Conversation
Contributor
Hey @Iam-Karan-Suresh 👋Thanks for raising your first pull request - we really appreciate it! ❤️ Make sure you've checked our contribution guide, and don't forget to give us a star! ⭐ If you're looking for more issues to contribute to, we'd suggest checking our curated list of good first issues to see if there's something you find interesting and feel comfortable tackling independently. You can further filter the list by labels to narrow down the results (we recommend |
Signed-off-by: Iam-karan-suresh <karansuresh.info@gmail.com>
1882c2d to
b080674
Compare
elevatebart
approved these changes
Feb 3, 2026
elevatebart
left a comment
Contributor
There was a problem hiding this comment.
That is an absolute jewell of a fix thank you!
proddata
pushed a commit
that referenced
this pull request
Feb 4, 2026
Co-authored-by: Barthélémy Ledoux <bledoux@kestra.io>
Ben8t
pushed a commit
that referenced
this pull request
Feb 10, 2026
Co-authored-by: Barthélémy Ledoux <bledoux@kestra.io>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In CSS Grid, grid items stretch by default to fill the grid area height.
This caused the sidebar’s height to match its parent, leaving no room for position: sticky to take effect.
Adding align-self: start prevents the sidebar from stretching, allowing it to maintain its natural height and enabling sticky positioning to work as expected within the grid container.
Screencast.from.2026-02-02.19-28-09.mp4
closes #3742