Fix SVGs being invisible on Safari

This commit is contained in:
Michael Bradley 2025-02-15 14:02:30 -05:00
parent 1ff0acbaf8
commit 696b5c36c4
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -94,20 +94,20 @@ const Fetch = () => {
const Links = () => (
<div className="links">
<a href="https://git.mmbradley.ca/MichaelBradley" title="Forgejo instance">
<Git />
<Git width="100%" />
</a>
<a href="https://www.linkedin.com/in/michaelmbradley/" title="LinkedIn account">
<LinkedIn />
<LinkedIn width="100%" />
</a>
<a href="https://mmbradley.ca/resume.pdf" title="My Résumé">
<CV />
<CV width="100%" />
</a>
<a rel="me" href="https://mstdn.ca/@michaelbradley" title="Mastodon account">
<Mastodon />
<Mastodon width="100%" />
</a>
<input id="dark-mode-toggle" type="checkbox" aria-label="Toggle dark mode" />
<label htmlFor="dark-mode-toggle" id="dark-mode-toggle-label" title="Toggle dark mode">
<DarkModeToggleIcon />
<DarkModeToggleIcon width="100%" />
</label>
</div>
);