diff options
| author | Herst <[email protected]> | 2017-09-07 19:11:26 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-09-09 17:00:24 -0700 |
| commit | 02c7eae47efc11b533d3b2fd076c60154715ebfd (patch) | |
| tree | 141f8435f91e37373de83214befdbb474fd5e346 /docs | |
| parent | d8a5147c380fe142ee97fa2489f05afe2ed5a614 (diff) | |
| download | bootstrap-02c7eae47efc11b533d3b2fd076c60154715ebfd.tar.xz bootstrap-02c7eae47efc11b533d3b2fd076c60154715ebfd.zip | |
Don't create empty columns in documentation
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/4.0/getting-started/options.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/getting-started/options.md b/docs/4.0/getting-started/options.md index 0b83c47f8..2547ef1ad 100644 --- a/docs/4.0/getting-started/options.md +++ b/docs/4.0/getting-started/options.md @@ -46,11 +46,11 @@ All colors available in Bootstrap 4, available as Sass variables and a Sass map <div class="row"> {% for color in site.data.colors %} + {% unless color.name == "white" or color.name == "gray" or color.name == "gray-dark" %} <div class="col-md-4"> - {% unless color.name == "white" or color.name == "gray" or color.name == "gray-dark" %} <div class="p-3 mb-3 swatch-{{ color.name }}">{{ color.name | capitalize }}</div> - {% endunless %} </div> + {% endunless %} {% endfor %} </div> |
