search: Make search box bottom border visible again.

The nav bar's bottom border was being hidden by the search
bar. This makes the search bar slightly less high to fix this
issue.

Soon this code will be replaced with the changes in #24345.
This commit is contained in:
evykassirer
2023-05-23 12:41:34 -07:00
committed by Tim Abbott
parent fea0ae1a2b
commit c486588360
2 changed files with 5 additions and 1 deletions

View File

@@ -65,7 +65,7 @@
#search_query {
width: 100%;
font-size: 16px;
height: var(--header-height);
height: calc(var(--header-height) - 1px);
padding: 0;
padding-left: 5px;
padding-right: 40px;

View File

@@ -2948,6 +2948,10 @@ select.invite-as {
height: var(--header-height);
}
#searchbox_form {
height: calc(var(--header-height) - 1px);
}
.spectator_narrow_login_button {
height: var(--header-height) !important;
}