From c7721c3a972a93852224a69ff8870dc035e523d3 Mon Sep 17 00:00:00 2001 From: Jakob Date: Wed, 12 Feb 2020 09:57:09 +0100 Subject: [PATCH] that moment when phone sceens have a higher resolution than desktop screens --- content/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/style.css b/content/style.css index 8187dc2..8f2286c 100644 --- a/content/style.css +++ b/content/style.css @@ -1,5 +1,5 @@ /* optimized for desktop users */ -@media only screen and (min-width: 721px) { +@media only screen and (min-width: 1280px) { .container{ display: grid; grid-template-columns: repeat(3, 1fr); @@ -22,7 +22,7 @@ } /* optimized for mobile users */ -@media only screen and (max-width: 720px) { +@media only screen and (max-width: 1279px) { .container{ display: grid; grid-template-columns: repeat(1, 1fr);