Skip to content

Commit

Permalink
Documentation fix: move width after make-container() mixin (twbs#29820
Browse files Browse the repository at this point in the history
)

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
  • Loading branch information
2 people authored and olsza committed Oct 3, 2020
1 parent 37b43ac commit db69d13
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 db69d13

Please sign in to comment.