Skip to content

Commit

Permalink
Adds accessibility improvements to docs. Closes #4742
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-it authored and milanholemans committed May 16, 2023
1 parent b5b7244 commit 0ccf65e
Show file tree
Hide file tree
Showing 4 changed files with 13 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
4 changes: 4 additions & 0 deletions docs/src/scss/Global.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@
color: var(--ifm-font-color-base);
}
}

.container a {
text-decoration: underline;
}
}

/* Reduce width on mobile for Mendable Search */
Expand Down

0 comments on commit 0ccf65e

Please sign in to comment.