From 9ce7f22e991804cd08c4dc612cd929d07dc0a28f Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 27 Apr 2013 18:47:47 +0200 Subject: Adding media queries breakpoints variables --- less/grid.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'less/grid.less') diff --git a/less/grid.less b/less/grid.less index 8162d9940..3ac727bc7 100644 --- a/less/grid.less +++ b/less/grid.less @@ -26,7 +26,7 @@ .generate-small-grid-columns(@grid-columns); // Responsive: Tablets and up -@media screen and (min-width: 768px) { +@media screen and (min-width: @screen-tablet) { .container { max-width: 728px; } @@ -38,14 +38,14 @@ } // Responsive: Desktops and up -@media screen and (min-width: 992px) { +@media screen and (min-width: @screen-desktop) { .container { max-width: 940px; } } // Responsive: Large desktops and up -@media screen and (min-width: 1200px) { +@media screen and (min-width: @screen-large-desktop) { .container { max-width: 1170px; } -- cgit v1.2.3