0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

Documentation fix: move width after make-container() mixin (#29820)

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
Martijn Cuppens 2019-12-25 12:28:02 +01:00 committed by XhmikosR
parent 16a82e7e99
commit 00b0e0a9b7

View File

@ -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 {