-
Notifications
You must be signed in to change notification settings - Fork 10
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
Various fixes from lighthouse suggestions #2254
Conversation
5c50c81
to
031a7e4
Compare
app/javascript/styles/jupiter.scss
Outdated
@@ -25,6 +25,14 @@ body { | |||
} | |||
} | |||
|
|||
// Increase footer link spacing on mobile to improve usability and seo. |
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.
You can probably do this all within bootstrap via these utilities classes: https://getbootstrap.com/docs/4.6/utilities/spacing/
So if you want top/bottom padding of around 3px for small devices you can just add the following class to these items:
py-sm-1
(it will actually be 4px instead of 3px, but doubt that makes any difference)
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.
Neat, those bootstrap classes are very versatile!
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.
Nice work. LGTM 👍
Generated by 🚫 Danger |
Now pre-loading main FA fonts, increased link spacing on mobile, and ordered the header tags in a more accessible way.