🐛 Fixed settings page not scrollable on mobile#26477
Merged
kevinansfield merged 1 commit intomainfrom Feb 18, 2026
Merged
Conversation
closes https://linear.app/ghost/issue/BER-3350/ closes #26473 The settings page wrapper only applied fixed positioning and height constraints at the tablet breakpoint (860px+). On smaller screens the wrapper was a normal block element with no height constraint, so the child content area's `h-full overflow-y-scroll` had no effect and the page couldn't scroll.
weylandswart
approved these changes
Feb 18, 2026
Contributor
weylandswart
left a comment
There was a problem hiding this comment.
Yup! Tested and all good.
betschki
pushed a commit
to magicpages/Ghost
that referenced
this pull request
Feb 19, 2026
closes https://linear.app/ghost/issue/BER-3350/ closes TryGhost#26473 - Fixed the settings page not being scrollable at mobile sizes (below 860px) when the sidebar is hidden - The page wrapper only applied `fixed` positioning and `h-full` at the `tablet` breakpoint, so on smaller screens the content area had no height constraint and `overflow-y-scroll` had no effect - Applied `fixed left-0 top-0 flex h-full` at all sizes so the content scroller works on mobile too
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.
closes https://linear.app/ghost/issue/BER-3350/
closes #26473
Summary
fixedpositioning andh-fullat thetabletbreakpoint, so on smaller screens the content area had no height constraint andoverflow-y-scrollhad no effectfixed left-0 top-0 flex h-fullat all sizes so the content scroller works on mobile too