From ac890b56b067d515c314f0e62af725c1bf192e19 Mon Sep 17 00:00:00 2001 From: delucis Date: Sun, 16 Jan 2022 15:34:08 +0100 Subject: [PATCH] Fix visibility of focused skip link on docs site MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- docs/src/components/Header/SkipToContent.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/components/Header/SkipToContent.astro b/docs/src/components/Header/SkipToContent.astro index 91df15b93..9e3844e6f 100644 --- a/docs/src/components/Header/SkipToContent.astro +++ b/docs/src/components/Header/SkipToContent.astro @@ -1,4 +1,4 @@ - +