0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-28 20:52:21 +01:00

Merge pull request #16785 from studyjan/debug_container

Round paddings of .container & .container-fluid to match .row's margins
This commit is contained in:
Mark Otto 2015-08-04 20:42:41 -07:00
commit bc4157054f

View File

@ -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);
}