From: Craig Ward Date: Thu, 13 Mar 2014 14:53:35 +0000 (+0000) Subject: Update media-queries.html X-Git-Tag: v5.2.1~14^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4666%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Update media-queries.html The second media query for Large Screens had an incorrect px value in the comment --- diff --git a/doc/pages/media-queries.html b/doc/pages/media-queries.html index 82aa4580f..506995ca3 100644 --- a/doc/pages/media-queries.html +++ b/doc/pages/media-queries.html @@ -28,7 +28,7 @@ Media queries are built using ems in Foundation. // Large screens @media only screen and (min-width: 64.063em) { } /* min-width 1025px, large screens */ -@media only screen and (min-width: 64.063em) and (max-width: 90em) { } /* min-width 1024px and max-width 1440px, use when QAing large screen-only issues */ +@media only screen and (min-width: 64.063em) and (max-width: 90em) { } /* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */ // XLarge screens @media only screen and (min-width: 90.063em) { } /* min-width 1441px, xlarge screens */