From db69d134bd80eab0355bb1d02e125cbcefc674bd Mon Sep 17 00:00:00 2001 From: Martijn Cuppens Date: Wed, 25 Dec 2019 12:28:02 +0100 Subject: [PATCH] Documentation fix: move width after `make-container()` mixin (#29820) Co-authored-by: XhmikosR --- site/content/docs/4.3/layout/grid.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/site/content/docs/4.3/layout/grid.md b/site/content/docs/4.3/layout/grid.md index 22ba961192c4..82b6b1aa1756 100644 --- a/site/content/docs/4.3/layout/grid.md +++ b/site/content/docs/4.3/layout/grid.md @@ -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 {