Skip to content

Commit

Permalink
fix: make search box responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwitzko committed Oct 10, 2023
1 parent 76be08b commit 61c9c8b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion app/components/Search.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
.search {
width: 30vw;
width: 100vw;
}

@media (min-width: 520px) {
.search {
width: 50vw;
}
}

@media (min-width: 1024px) {
.search {
width: 30vw;
}
}

0 comments on commit 61c9c8b

Please sign in to comment.