From a34cf196e7f3b41629eb94dafd432033ca4e174c Mon Sep 17 00:00:00 2001 From: edpibu Date: Tue, 22 Dec 2020 11:30:07 +0100 Subject: [PATCH] Fixed media query for chrome (incorrect syntax) --- css/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/index.css b/css/index.css index 19b306c..bc8e433 100644 --- a/css/index.css +++ b/css/index.css @@ -68,7 +68,7 @@ footer a:active { color: #ffffffde; } -@media screen and ((min-width: 1024px) or (orientation: landscape)) { +@media screen and (min-width: 1024px), screen and (orientation: landscape) { .left, .right { top: 0; bottom: 0; @@ -94,7 +94,7 @@ footer a:active { } } -@media screen and ((max-width: 700px) and (orientation: landscape)) { +@media screen and (max-width: 700px) and (orientation: landscape) { .left h1, .left h2 { font-size: 2rem; padding-right: .5em;