Skip to content

Commit

Permalink
Correct search bar's focus border radius (#1892)
Browse files Browse the repository at this point in the history
There was a gap between the nested borders.
  • Loading branch information
dbernheisel committed Apr 10, 2024
1 parent 70613c4 commit a6a984e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/css/search-bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
}
Expand Down

0 comments on commit a6a984e

Please sign in to comment.