-
Notifications
You must be signed in to change notification settings - Fork 4
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: use inclusive language, tidy up footer #23
Conversation
✅ Deploy Preview for the-collab-lab ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
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.
Approved! And, can you fix that typo while you're in there? 😅
src/components/Footer.astro
Outdated
@@ -34,7 +34,7 @@ import { donationOptions } from '~data'; | |||
{ | |||
donationOptions.length > 0 && ( | |||
<Fragment> | |||
<p> | |||
<p style="margin-block-start: 1em;"> | |||
We also accdept direct donations. Please consider supporting The |
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.
Typo: "accdept" → "accept"
@@ -34,7 +34,7 @@ import { donationOptions } from '~data'; | |||
{ | |||
donationOptions.length > 0 && ( | |||
<Fragment> | |||
<p> | |||
<p style="margin-block-start: 1em;"> |
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.
Is there a reason we're using style
attributes here and not classes?
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.
Yes: laziness. I've done this in a few small places and I want to come back and tidy up.
Summary
Fixes #15 – inclusive language
Fixes #16 – makes dev.to icon black
Fixes #17 – adds a link to our Mastodon account
Fixes #18 – adds vertical spacing before our "made with" credits
Also applies a few other minor spacing and layout fixes.