Skip to content

Commit

Permalink
Documentation fix: move width after make-container() mixin (#29820)
Browse files Browse the repository at this point in the history
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
  • Loading branch information
MartijnCuppens and XhmikosR committed Jan 2, 2020
1 parent 16a82e7 commit 00b0e0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion site/docs/4.4/layout/grid.md
Expand Up @@ -826,8 +826,10 @@ You can modify the variables to your own custom values, or just use the mixins w

{% highlight scss %}
.example-container {
width: 800px;
@include make-container();
// Make sure to define this width after the mixin to override
// `width: 100%` generated by `make-container()`
width: 800px;
}

.example-row {
Expand Down

0 comments on commit 00b0e0a

Please sign in to comment.