From 2c2a0650107b5f17582e37ba389e23f4422c47b3 Mon Sep 17 00:00:00 2001 From: Craig Ward Date: Thu, 13 Mar 2014 14:53:35 +0000 Subject: [PATCH] Update media-queries.html The second media query for Large Screens had an incorrect px value in the comment --- doc/pages/media-queries.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.47.2