Skip to content

Commit

Permalink
Merge pull request twbs#16785 from studyjan/debug_container
Browse files Browse the repository at this point in the history
Round paddings of .container & .container-fluid to match .row's margins
  • Loading branch information
mdo committed Aug 5, 2015
2 parents 5758692 + b5c5589 commit bc41570
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions less/mixins/grid.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
.container-fixed(@gutter: @grid-gutter-width) {
margin-right: auto;
margin-left: auto;
padding-left: (@gutter / 2);
padding-right: (@gutter / 2);
padding-left: floor((@gutter / 2));
padding-right: ceil((@gutter / 2));
&:extend(.clearfix all);
}

Expand Down

0 comments on commit bc41570

Please sign in to comment.