From 1df8ad75638c15043430ee4e44b106fc9a12b356 Mon Sep 17 00:00:00 2001 From: Jack Hsu Date: Fri, 20 Sep 2024 16:18:59 -0400 Subject: [PATCH] docs(core): add missing .DocSearch-VisuallyHiddenForAccessibility style (#28020) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a missing class name causing the icon text to display on screen. Screenshot 2024-09-20 at 3 58 36 PM ## Current Behavior ## Expected Behavior ## Related Issue(s) Fixes # --- nx-dev/feature-search/src/lib/algolia-search.global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nx-dev/feature-search/src/lib/algolia-search.global.css b/nx-dev/feature-search/src/lib/algolia-search.global.css index c2a4c2fa07..32f5720f80 100644 --- a/nx-dev/feature-search/src/lib/algolia-search.global.css +++ b/nx-dev/feature-search/src/lib/algolia-search.global.css @@ -2,6 +2,10 @@ @apply overflow-hidden !important; } +.DocSearch-VisuallyHiddenForAccessibility { + visibility: hidden; +} + body .DocSearch-Container { @apply fixed left-0 top-0 z-[50] flex h-screen w-screen cursor-auto flex-col bg-black/10 p-4 backdrop-blur-sm sm:p-6 md:p-[10vh] lg:p-[12vh] dark:bg-white/10; }