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 Dec 25, 2019
1 parent fa4dd7e commit c6cfc23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion site/content/docs/4.3/layout/grid.md
Expand Up @@ -747,8 +747,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 c6cfc23

Please sign in to comment.