Skip to content

Commit

Permalink
Adding defaults to breakpoints will allow the breakpoints set _settin…
Browse files Browse the repository at this point in the history
…gs to override the defaults.
  • Loading branch information
paulthegeek committed Oct 24, 2014
1 parent efed28f commit 906089e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions css/sass/global/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/********** Breakpoints **********/

$small: 30em;
$medium: 50em;
$large: 64em;
$small: 30em !default;
$medium: 50em !default;
$large: 64em !default;

/********** Modal **********/

Expand Down
6 changes: 3 additions & 3 deletions css/stylus/global/_variables.styl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/********** Breakpoints **********/

$small = 30em;
$medium = 50em;
$large = 64em;
$small = 30em !default;
$medium = 50em !default;
$large = 64em !default;

/********** Modal **********/

Expand Down

0 comments on commit 906089e

Please sign in to comment.