Skip to content

Commit

Permalink
Improve the responsiveness of the new search
Browse files Browse the repository at this point in the history
  • Loading branch information
ommann committed Mar 13, 2024
1 parent 0042856 commit 0202dd9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
minmax(0, auto)
minmax(0, auto);

grid-template-columns: 1fr 350px 1100px 1fr;
grid-template-columns: 1fr minmax(0, 350px) minmax(0, 1100px) 1fr;

grid-template-areas:
"search search search search"
Expand All @@ -18,7 +18,7 @@

@media (max-width: 1200px) {
.search-container {
grid-template-columns: 350px 1fr;
grid-template-columns: 350px minmax(0, 1fr);

grid-template-areas:
"search search"
Expand All @@ -29,7 +29,7 @@

@media (max-width: 990px) {
.search-container {
grid-template-columns: 1fr;
grid-template-columns: minmax(0, 1fr);

grid-template-areas:
"search"
Expand Down

0 comments on commit 0202dd9

Please sign in to comment.