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