-
Notifications
You must be signed in to change notification settings - Fork 332
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
Revert menu icon to white #1445
Conversation
I can't figure out what this actually changes? I ran |
Ahhh, thanks. It only appears on small viewports too. Reviewing. |
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.
Got some nits inline but overall LGTM 👍
Thanks for catching this!
public/stylesheet/pumpio.css
Outdated
@@ -35,6 +35,10 @@ body { | |||
width: auto; | |||
} | |||
|
|||
.navbar .btn-navbar span { | |||
color: white; |
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.
Two spaces, not four, for consistency with surrounding lines
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.
Sorry, I have emacs configuration by default in four XD, I will change
public/stylesheet/pumpio.css
Outdated
@@ -35,6 +35,10 @@ body { | |||
width: auto; | |||
} | |||
|
|||
.navbar .btn-navbar span { |
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 would be more clear if it targeted .fa.fa-bars
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.
I think specifics styles are harder to maintain and adds unnecessary complexity, the result is the same.
If in the future changes the icon name no need change styles only replace the class or if changes the icon family only need to change classes
https://stackoverflow.com/questions/2281766/generic-vs-specific-element-styles-for-maintainability
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.
I'd be okay with that if you add a comment above saying what this applies to. Otherwise future readers may have the same question I did ("what does this even apply to?")
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.
Made
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.
Thanks!
No description provided.