-
-
Notifications
You must be signed in to change notification settings - Fork 5
Fix height problem with the whole page layout #24
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
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for ember-rfcs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
@@ -1,3 +1,7 @@ | |||
.sidebar-container--full-width { | |||
min-height: calc(100dvh - 90px); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
90px is the height of the header
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
however, it's 56px on narrower screens
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So I'm glad my spider senses were tingling with this and I thought to test it with the footer added #26
This is actually the wrong solution. We need the height of the whole body to have a minimum of 100vh (or whatever the right thing is)
@MinThaMie do we not already have this catered for in some of our layout stuff? 🤔
I did try that at first, but the background colors are then in the wrong spot. |
Before
After