From f79ab5046358da8873aff42e223948df5b9eff12 Mon Sep 17 00:00:00 2001 From: Pier Luigi Fiorini Date: Sat, 18 Feb 2017 22:59:11 +0100 Subject: [PATCH] Actually set padding and h3 size for mobile Be more careful with media queries: desktops have min-width 320px for sure so query for max-width 1024px instead. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 04e7d18..8984834 100644 --- a/index.html +++ b/index.html @@ -23,7 +23,7 @@ } } - @media screen and (min-width: 320px) { + @media screen and (max-width: 1024px) { .liri-laptop { padding-top: 20px; }