From d4098fc94fd4fa6494f3eefaff32be66f21bacbf Mon Sep 17 00:00:00 2001 From: Shaman Shetty Date: Mon, 27 Oct 2025 07:51:04 +0530 Subject: [PATCH] Fix search text overlapping with input box in DocSearch modal Added margin-right to .DocSearch-VisuallyHiddenForAccessibility class to prevent the 'Search' label from overlapping with the search input box border. --- www/src/styles/algolia/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/www/src/styles/algolia/style.css b/www/src/styles/algolia/style.css index 3fb8272e75..916bb01175 100644 --- a/www/src/styles/algolia/style.css +++ b/www/src/styles/algolia/style.css @@ -625,3 +625,8 @@ svg.DocSearch-Hit-Select-Icon { opacity: 1; } } + +/* Fix overlapping of Search text with input box */ +.DocSearch-VisuallyHiddenForAccessibility { + margin-right: 8px; +}