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:
delucis 2022-01-16 15:34:08 +01:00
parent 290dbc8de3
commit ac890b56b0
No known key found for this signature in database
GPG key ID: 52DB15DC07051619

View file

@ -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,