From 4d5a8d58dc21aa5cbcadccc838c468ad98fc9daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Thu, 21 Sep 2023 23:15:07 +0200 Subject: [PATCH] Fix 'Expected "context" media feature range notation' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- src/styles/loading.scss | 2 +- src/styles/ui.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/loading.scss b/src/styles/loading.scss index 18458ba9e..56e586ae9 100644 --- a/src/styles/loading.scss +++ b/src/styles/loading.scss @@ -148,7 +148,7 @@ padding: 20px; border-radius: 10px; - @media screen and (max-width: 580px) { + @media screen and (width <= 580px) { border-radius: 0; } diff --git a/src/styles/ui.scss b/src/styles/ui.scss index 530599d3f..4191cf26c 100644 --- a/src/styles/ui.scss +++ b/src/styles/ui.scss @@ -106,7 +106,7 @@ font-family: inherit; padding: 7px 0; - @media screen and (max-width: 600px) { + @media screen and (width <= 600px) { font-size: 16px; } }