Skip to content

Commit

Permalink
Merge pull request #11634 from HarwinBorger/fix-grid-container-margin…
Browse files Browse the repository at this point in the history
…-value

Fix wrong implementation of horizontal centering the grid-container
  • Loading branch information
ncoden authored Dec 18, 2018
2 parents fd75c84 + 2b71513 commit f8f447a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scss/xy-grid/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
@include xy-gutters($gutters: $padding, $gutter-type: padding);

max-width: $width;
margin: 0 auto;
margin-left: auto;
margin-right: auto;
}

/// Creates a container for your flex cells.
Expand Down

0 comments on commit f8f447a

Please sign in to comment.