summaryrefslogtreecommitdiff
path: root/docs/public/make-scrollable-code-focusable.js (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-02-07Remove docs from monorepo (#2517)Gravatar Jonathan Neal 1-3/+0
* Remove docs from monorepo * Update PULL_REQUEST_TEMPLATE.md * Update relative doc references with links or todo
2021-12-22Use accessible indentation (#2253)Gravatar Jonathan Neal 1-1/+1
2021-07-23[ci] yarn formatGravatar jasikpark 1-2/+2
2021-07-22📘 DOC: improve a11y (#806)Gravatar Caleb Jasik 1-0/+3
* Add `tabindex="0"` to `<pre>` so that they are navigable by keyboard users if they overflow. * Landmark elements should have unique names https://dequeuniversity.com/rules/axe/4.3/landmark-unique * Page must have one main landmark https://dequeuniversity.com/rules/axe/4.3/landmark-one-main - Main landmark must not be contained by another landmark https://dequeuniversity.com/rules/axe/4.3/landmark-main-is-top-level * Heading level cannot increase by more than one * Ensure that links with the same accessible name serve a similar purpose https://dequeuniversity.com/rules/axe/4.3/identical-links-same-purpose * Just update the accessible name and require context for the visible link name * Fix CSS from the removal of the second <main> * Revert heading level change