Commit 02c7eae4 authored by Herst's avatar Herst Committed by Mark Otto
Browse files

Don't create empty columns in documentation

parent d8a5147c
Showing with 2 additions and 2 deletions
+2 -2
...@@ -46,11 +46,11 @@ All colors available in Bootstrap 4, available as Sass variables and a Sass map ...@@ -46,11 +46,11 @@ All colors available in Bootstrap 4, available as Sass variables and a Sass map
<div class="row"> <div class="row">
{% for color in site.data.colors %} {% for color in site.data.colors %}
{% unless color.name == "white" or color.name == "gray" or color.name == "gray-dark" %}
<div class="col-md-4"> <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> <div class="p-3 mb-3 swatch-{{ color.name }}">{{ color.name | capitalize }}</div>
{% endunless %}
</div> </div>
{% endunless %}
{% endfor %} {% endfor %}
</div> </div>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment