Commit bc415705 authored by Mark Otto's avatar Mark Otto

Merge pull request #16785 from studyjan/debug_container

Round paddings of .container & .container-fluid to match .row's margins
parents 57586925 b5c5589a
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
.container-fixed(@gutter: @grid-gutter-width) { .container-fixed(@gutter: @grid-gutter-width) {
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
padding-left: (@gutter / 2); padding-left: floor((@gutter / 2));
padding-right: (@gutter / 2); padding-right: ceil((@gutter / 2));
&:extend(.clearfix all); &:extend(.clearfix all);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment