From: Martijn Cuppens Date: Wed, 25 Dec 2019 11:28:02 +0000 (+0100) Subject: Documentation fix: move width after `make-container()` mixin (#29820) X-Git-Tag: v4.5.0~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00b0e0a9b76d3700c3b681c0e70b94b768e31a59;p=thirdparty%2Fbootstrap.git Documentation fix: move width after `make-container()` mixin (#29820) Co-authored-by: XhmikosR --- diff --git a/site/docs/4.4/layout/grid.md b/site/docs/4.4/layout/grid.md index 5258cd505c..d6c4679fe5 100644 --- a/site/docs/4.4/layout/grid.md +++ b/site/docs/4.4/layout/grid.md @@ -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 {