Skip to content

Commit

Permalink
Make footer icons visually focusable (#11663)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepelsbey authored Aug 22, 2024
1 parent e890906 commit 8b00fec
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions client/src/ui/organisms/footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,42 +24,39 @@ export function Footer() {
<ul className="social-icons">
<li>
<a
className="icon icon-mastodon"
href="https://mozilla.social/@mdn"
target="_blank"
rel="me noopener noreferrer"
>
<span className="icon icon-mastodon"></span>
<span className="visually-hidden">MDN on Mastodon</span>
</a>
</li>
<li>
<a
className="icon icon-twitter-x"
href="https://twitter.com/mozdevnet"
target="_blank"
rel="noopener noreferrer"
>
<span className="icon icon-twitter-x"></span>
<span className="visually-hidden">
MDN on X (formerly Twitter)
</span>
</a>
</li>
<li>
<a
className="icon icon-github-mark-small"
href="https://github.com/mdn/"
target="_blank"
rel="noopener noreferrer"
>
<span className="icon icon-github-mark-small"></span>
<span className="visually-hidden">MDN on GitHub</span>
</a>
</li>
<li>
<a
className="icon icon-feed"
href="/en-US/blog/rss.xml"
target="_blank"
>
<a href="/en-US/blog/rss.xml" target="_blank">
<span className="icon icon-feed"></span>
<span className="visually-hidden">MDN Blog RSS Feed</span>
</a>
</li>
Expand Down

0 comments on commit 8b00fec

Please sign in to comment.