Skip to content

Commit

Permalink
Adds accessibility improvements. Closes: #4742
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-it authored and Jwaegebaert committed May 23, 2023
1 parent a659cc0 commit 68e9799
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@docusaurus/core": "^2.4.0",
"@docusaurus/preset-classic": "^2.4.0",
"@mdx-js/react": "^1.6.22",
"@mendable/search": "^0.0.93",
"@mendable/search": "^0.0.99",
"clsx": "^1.2.1",
"docusaurus-plugin-sass": "^0.2.3",
"prism-react-renderer": "^1.3.5",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/TeamCardOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const TeamCardOverview = ({individuals}: ITeamCardOverview): JSX.Element => (
<div className={styles.gridItemContainer}>
<div className={styles.gridItem}>
<div className={styles.gridItemAlignCenter}>
<img src={individual.github ? `https://github.com/${individual.github}.png` : `https://ui-avatars.com/api/?name=${individual.name}`} className={styles.gridItemImg} />
<img alt='GitHub avatar' src={individual.github ? `https://github.com/${individual.github}.png` : `https://ui-avatars.com/api/?name=${individual.name}`} className={styles.gridItemImg} />
</div>
<div className={styles.gridItemAlignCenter}>
<div className={styles.gridItemText}>
Expand Down

0 comments on commit 68e9799

Please sign in to comment.