From 6f79930100d68a918339302535d49c7a063b91bf Mon Sep 17 00:00:00 2001 From: Sam Lavigne Date: Sun, 20 Aug 2023 15:31:30 -0400 Subject: [PATCH] fix mobile filters --- src/App.svelte | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index 97c5cd9..301d3fa 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -372,6 +372,12 @@ justify-content: center; } + @media only screen and (max-width: 1400px) { + .filters-holder { + grid-template-columns: repeat(2, 1fr); + } + } + @media only screen and (max-width: 600px) { main { grid-template-areas: @@ -412,9 +418,4 @@ padding: 0; } } - @media only screen and (max-width: 1400px) { - .filters-holder { - grid-template-columns: repeat(2, 1fr); - } - }