Remove pill-item__label--selected class

It was used to mark labels of selected items when
we thought they might need extra styling but is
now redundant.
This commit is contained in:
Tom Byers
2020-09-08 11:46:32 +01:00
parent 7cae303104
commit 58ad6fe4c7

View File

@@ -18,7 +18,7 @@
{% if show_count %}
{{ big_number(count, **big_number_args) }}
{% endif %}
<div class="pill-item__label{% if current_value == option %} pill-item__label--selected{% endif %}{% if not show_count %} pill-item--centered{% endif %}">{{ label }}</div>
<div class="pill-item__label{% if not show_count %} pill-item--centered{% endif %}">{{ label }}</div>
</a>
</li>
{% endfor %}