Fix extra navbar padding on search page

This commit is contained in:
Butter Cat 2024-08-03 16:05:02 -04:00
parent b60f1f9d00
commit 642e64eb4f
No known key found for this signature in database
GPG key ID: FF37BE4FDDB74419

View file

@ -694,6 +694,7 @@ select,
display: flex;
box-shadow: var(--shadow);
border-radius: 5px;
margin-bottom: 0;
}
#searchbox > *,
@ -1912,7 +1913,7 @@ th {
nav {
display: grid;
grid-template-areas: "logo links" "searchbox searchbox";
padding: 10px;
padding: 5px 10px 0;
width: calc(100% - 20px);
}
@ -1967,6 +1968,7 @@ th {
}
#searchbox {
width: calc(100vw - 20px);
margin-bottom: 10px;
}
}