Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2019-12-25 14:28:02 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-01-02 13:11:56 +0300
commit00b0e0a9b76d3700c3b681c0e70b94b768e31a59 (patch)
tree7a7777f5e6787f1433b362c82f36b533eff9304a /site/docs/4.4
parent16a82e7e99d0fd71564e654367156dbbe90f57ee (diff)
Documentation fix: move width after `make-container()` mixin (#29820)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Diffstat (limited to 'site/docs/4.4')
-rw-r--r--site/docs/4.4/layout/grid.md4
1 files changed, 3 insertions, 1 deletions
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 {