]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Added default flag to Media Query Ranges 3742/head
authorKonstantinos Pittas <konstantinos.pittas@gmail.com>
Thu, 28 Nov 2013 10:27:05 +0000 (12:27 +0200)
committerKonstantinos Pittas <konstantinos.pittas@gmail.com>
Thu, 28 Nov 2013 10:27:05 +0000 (12:27 +0200)
Because currently you can't change the breakpoints from _settings.scss

scss/foundation/components/_global.scss

index ba93913d8daf5416a13a583dd064c792a5108946..ba185422884c232bb25f62ea168334a3d4e0b372 100644 (file)
@@ -234,11 +234,11 @@ $include-html-global-classes: $include-html-classes !default;
 
 
 // Media Query Ranges
-$small-range: (0em, 40em);
-$medium-range: (40.063em, 64em);
-$large-range: (64.063em, 90em);
-$xlarge-range: (90.063em, 120em);
-$xxlarge-range: (120.063em);
+$small-range: (0em, 40em) !default;
+$medium-range: (40.063em, 64em) !default;
+$large-range: (64.063em, 90em) !default;
+$xlarge-range: (90.063em, 120em) !default;
+$xxlarge-range: (120.063em) !default;
 
 
 $screen: "only screen" !default;
@@ -383,4 +383,4 @@ $cursor-text-value: text !default;
     // Make select elements 100% width by default
     select { width: 100%; }
   }
-}
\ No newline at end of file
+}