From a6a984eb516fcb8f40159bde91115b34f06578ae Mon Sep 17 00:00:00 2001 From: David Bernheisel Date: Wed, 10 Apr 2024 15:00:56 -0400 Subject: [PATCH] Correct search bar's focus border radius (#1892) There was a gap between the nested borders. --- assets/css/search-bar.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/css/search-bar.css b/assets/css/search-bar.css index c5d1c5f4a..9e957caed 100644 --- a/assets/css/search-bar.css +++ b/assets/css/search-bar.css @@ -25,7 +25,7 @@ .top-search .search-bar .search-input { background-color: var(--searchSearch); - border: 1px solid transparent; + border: none; border-radius: 8px; color: var(--searchAccentMain); position: relative; @@ -40,8 +40,8 @@ } .top-search .search-bar .search-input:focus { - border-color: var(--searchBarFocusColor); - border-radius: 8px; + border: 1px solid var(--searchBarFocusColor); + border-radius: 7px; position: relative; box-shadow: 0px 4px 20px 0px var(--searchBarBorderColor) inset; }