From a6523863294ffae6f5e80bd5ad08ab3dbecacbf4 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 11 Oct 2023 23:39:11 -0400 Subject: [PATCH] fix: Use consistent active state on recent search items --- app/scenes/Search/components/RecentSearches.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/scenes/Search/components/RecentSearches.tsx b/app/scenes/Search/components/RecentSearches.tsx index 5b0a4e81f..67f09993c 100644 --- a/app/scenes/Search/components/RecentSearches.tsx +++ b/app/scenes/Search/components/RecentSearches.tsx @@ -117,6 +117,11 @@ const RecentSearch = styled(Link)` padding: 1px 4px; border-radius: 4px; + &:focus-visible { + outline: none; + } + + &:focus, &: ${hover} { color: ${s("text")}; background: ${s("secondaryBackground")};