]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Merge pull request #13 from twbs/default-vars
authorMark Otto <markd.otto@gmail.com>
Thu, 11 Dec 2014 20:20:05 +0000 (12:20 -0800)
committerMark Otto <markd.otto@gmail.com>
Thu, 11 Dec 2014 20:20:05 +0000 (12:20 -0800)
Apply !default to SCSS variables

1  2 
scss/_variables.scss

index 8f9e26d68dc55289ec3223a52b7eafa0f67f6ee3,95eb4b2a7ed9481eab97abed07b5bc3bd54a44cc..f981933b08fc36d64dda9f40e883586015700077
@@@ -294,16 -294,16 +294,16 @@@ $screen-xs-max:              ($screen-s
  //== Grid system
  //
  //## Define your custom responsive grid.
 -
 +$grid-breakpoints: (xs sm md lg xl);
  //** Number of columns in the grid.
- $grid-columns:               12;
+ $grid-columns:               12 !default;
  //** Padding between columns. Gets divided in half for the left and right.
- $grid-gutter-width:          1.5rem;
+ $grid-gutter-width:          1.5rem !default;
  // Navbar collapse
  //** Point at which the navbar becomes uncollapsed.
- $grid-float-breakpoint:      $screen-sm-min;
+ $grid-float-breakpoint:      $screen-sm-min !default;
  //** Point at which the navbar begins collapsing.
- $grid-float-breakpoint-max:  ($grid-float-breakpoint - 1);
+ $grid-float-breakpoint-max:  ($grid-float-breakpoint - 1) !default;
  
  
  //== Container sizes