From 3e38177f148e5e0522920569dbca6da80f01b2a8 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Sun, 9 Oct 2022 15:15:47 -0400 Subject: [PATCH] Fix media queries on webkit --- prototype/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prototype/style.css b/prototype/style.css index fad4ba0..4d2819d 100644 --- a/prototype/style.css +++ b/prototype/style.css @@ -100,7 +100,7 @@ header .buttonList { padding: 1rem; } -@media screen and not (min-width: 60rem) { +@media not screen and (min-width: 60rem) { aside { margin-bottom: 1rem; } @@ -157,7 +157,7 @@ header .buttonList { } } -@media screen and not (min-width: 80rem) { +@media not screen and (min-width: 80rem) { .collapse { display: none; }