Skip to content

Commit

Permalink
Add !default flag to vars.
Browse files Browse the repository at this point in the history
Fixes #10
  • Loading branch information
csswizardry committed Mar 16, 2013
1 parent 376e7d4 commit 8831cc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
* **1.5.1** Use Sass’ nesting to keep things a tad DRYer
* **1.6** Add push and pull classes
* **1.7** Ability to define custom breakpoints
* **1.7.1** Add `!default` flags to library variables
12 changes: 6 additions & 6 deletions csswizardry-grids.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,33 +71,33 @@
* If you are building a non-responsive site but would still like to use
* csswizardry-grids, set this to ‘false’:
*/
$responsive: true;
$responsive: true!default;


/**
* Is this build mobile first? Setting to ‘true’ means that all grids will be
* 100% width if you do not apply a more specific class to them.
*/
$mobile-first: true;
$mobile-first: true!default;


/**
* Set the spacing between your grid items.
*/
$gutter: 24px;
$gutter: 24px!default;


/**
* Would you like Sass’ silent classes, or regular CSS classes?
*/
$use-silent-classes: false;
$use-silent-classes: false!default;


/**
* Would you like push and pull classes enabled?
*/
$push: false;
$pull: false;
$push: false!default;
$pull: false!default;


/**
Expand Down

0 comments on commit 8831cc3

Please sign in to comment.