-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
fix(web): keep the pages of the navigation in the center #21867
Changes from all commits
238a713
9527d10
216ffdf
8763f36
d66dca0
7b360b0
a780962
92a7e10
a26bdf0
8c05f49
db2a68c
434eb45
ab4eeb0
ad090d2
cc7b877
9ee95f3
21fb03a
ed86a01
6b18d8f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,6 +172,8 @@ | |
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; } | ||
.py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; } | ||
|
||
.content-center { align-content: center !important; } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why important? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because all the other classes are important, I have written it as important as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Important is ok for helpers. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's probably not necessary for this helper, but for others it definitely is to allow outweighing the heavyweight fomantic styles as well as the overly-nested styles of our own. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Which simply means that we should fix our nested selectors and replace them with simpler ones. |
||
|
||
@media @mediaSm { | ||
.db-small { display: block !important; } | ||
.w-100-small { width: 100% !important; } | ||
|
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.
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.
This is something I want to address together in another PR.
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.
Let's not do this here but in #21855.