From 7ecadc1aa059856723f9a579aeffbcff4b210371 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 13 Dec 2020 23:33:33 +0200 Subject: [PATCH] docs: fix mobile menu not closing when clicking a link --- dashboard/src/components/docs/DocsLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/components/docs/DocsLayout.vue b/dashboard/src/components/docs/DocsLayout.vue index 38ce4ea1..b508ef46 100644 --- a/dashboard/src/components/docs/DocsLayout.vue +++ b/dashboard/src/components/docs/DocsLayout.vue @@ -42,7 +42,7 @@ <!-- Content --> <main class="docs-content main-content flex-flexible overflow-x-hidden"> - <a id="main-anchor" ref="main-anchor"></a> + <a id="main-anchor" ref="main-anchor" tabindex="-1" class="sr-only"></a> <router-view :key="$route.fullPath"></router-view> </main> </div>