aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <[email protected]>2019-12-25 12:28:02 +0100
committerGitHub <[email protected]>2019-12-25 12:28:02 +0100
commitc6cfc23239cde66f43388dd5e7abde9b5c637021 (patch)
tree25eae69e814d61cddebb60b7a4026cc6244a63ef
parentfa4dd7e9af97ac13fd3c74071039e35c47519381 (diff)
downloadbootstrap-c6cfc23239cde66f43388dd5e7abde9b5c637021.tar.xz
bootstrap-c6cfc23239cde66f43388dd5e7abde9b5c637021.zip
Documentation fix: move width after `make-container()` mixin (#29820)
Co-authored-by: XhmikosR <[email protected]>
-rw-r--r--site/content/docs/4.3/layout/grid.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/site/content/docs/4.3/layout/grid.md b/site/content/docs/4.3/layout/grid.md
index 22ba96119..82b6b1aa1 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 {