Fix visibility of focused skip link on docs site
The `sr-only` utility class used on the “Skip to Content” link at the top of each page in the docs is designed to be paired with the `focus:not-sr-only` class. `focus:not-sr-only` was missing on the skip link, meaning it was never shown even when focused.
This commit is contained in:
parent
290dbc8de3
commit
ac890b56b0
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
<a href="#article" class="sr-only skiplink"><span>Skip to Content</span></a>
|
||||
<a href="#article" class="sr-only focus:not-sr-only skiplink"><span>Skip to Content</span></a>
|
||||
|
||||
<style>
|
||||
.skiplink,
|
||||
|
|
Loading…
Reference in a new issue