Skip to content

Commit

Permalink
feat: tweak searchbox padding for small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobvase committed Jan 12, 2025
1 parent b1af71e commit aef34db
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions static/search/search-box.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,16 @@
right: 0;
z-index: 1;
}

@media screen and (700px < width <= 1400px) {
#search-wrapper {
padding-top: 0.25rem;
}
}

@media screen and (width <= 700px) {
#search-wrapper {
padding-top: 0.25rem;
padding-right: 0.5rem;
}
}

0 comments on commit aef34db

Please sign in to comment.