-
Notifications
You must be signed in to change notification settings - Fork 153
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
Added product name to homepage & thumbnail sizing #2232
Conversation
* Related to #2137 - moved customer support to its own accordion
@kristinashu PR updated! |
@@ -1,4 +1,8 @@ | |||
#pni-home { | |||
.main-content.pb-5 { | |||
padding-bottom: 0 !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.
Let's not do this. If we need padding-bottom 0, then either we set pb-0
as a bootstrap class instead of pb-5, or we add a different-named class that we can use to set up a more-specific CSS rule (so that it wins from the general pb-5) that effects the override.
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 also why we had those classes as explicit strings everywhere: you can't easily tweak individual class strings if they're pulled from a template variable)
PR updated! |
Might be me. I will check in a bit. |
@@ -64,6 +64,11 @@ | |||
padding: $padding-y $padding-x; | |||
width: calc((100% - #{$row-total-gutter-width}) / #{$items-per-row}); | |||
|
|||
&.d-flex.d-none { |
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.
wow. crazy O_O
Closes #2229 and #2124
@Pomax I added a few wrappers so it will be a lot easier if you review the code without whitespace changes: https://github.com/mozilla/foundation.mozilla.org/pull/2232/files?w=1