From bc5245606290353959ad88e884641de948cc297c Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Wed, 28 Dec 2016 21:43:57 +0100 Subject: [PATCH] Fix concatenation of media queries in customstyles.css When concatenating multiple media queries, only the first `@media` is necessary. --- css/customstyles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/customstyles.css b/css/customstyles.css index 676c804..fe5923c 100644 --- a/css/customstyles.css +++ b/css/customstyles.css @@ -924,7 +924,7 @@ span.soft { } -@media only screen and (min-width: 900px), @media only screen and (min-device-width: 900px) { +@media only screen and (min-width: 900px), only screen and (min-device-width: 900px) { .col-md-9 img { max-width: 700px; max-height: 700px;