Skip to content

Commit

Permalink
fix(grid): Fix merge error onto the grid padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Lausselloic committed Jan 12, 2017
1 parent 3d88536 commit d74821a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions scss/mixins/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@
position: relative;
margin-left: auto;
margin-right: auto;

// boosted mod

@each $breakpoint in map-keys($gutters) {
@include media-breakpoint-up($breakpoint) {
$gutter: map-get($gutters, $breakpoint);
padding-right: ($gutter / 2);
padding-left: ($gutter / 2);
}
}

// boosted mod
@each $breakpoint, $container-margin in $container-fluid-margin-widths {
@include media-breakpoint-up($breakpoint) {
margin-right: $container-margin;
Expand Down

0 comments on commit d74821a

Please sign in to comment.