Skip to content

Commit

Permalink
add !default to $gridRowWidth. fixes twbs#64
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mcdonald committed Feb 17, 2012
1 parent 2e04730 commit 619a1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/assets/stylesheets/bootstrap/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ $infoBorder: darken(adjust-hue($infoBackground, -10), 7%) !default;
$gridColumns: 12 !default;
$gridColumnWidth: 60px !default;
$gridGutterWidth: 20px !default;
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;

// Fluid grid
$fluidGridColumnWidth: 6.382978723% !default;
Expand Down

0 comments on commit 619a1d2

Please sign in to comment.