0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

_grid.scss: Declare left margin before right margin for uniformity; refs #18036

[skip sauce]
[skip validator]
This commit is contained in:
Chris Rebert 2015-10-23 15:58:10 -07:00
parent aff3fce63b
commit a30a5bb9b5

View File

@ -3,8 +3,8 @@
// Generate semantic grid columns with these mixins.
@mixin make-container($gutter: $grid-gutter-width) {
margin-right: auto;
margin-left: auto;
margin-right: auto;
padding-left: ($gutter / 2);
padding-right: ($gutter / 2);
@if not $enable-flex {