Lighten tags background

This commit is contained in:
Alexandre Iooss 2022-12-26 10:50:17 +01:00
parent f52fdfa55e
commit def5710238

View file

@ -43,7 +43,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
{% if gallery.tags.all %}
<p class="text-muted">
Tags : {% for tag in gallery.tags.all %}
<a class="badge rounded-pill bg-dark text-decoration-none" href="{% url 'photologue:tag-detail' tag.slug %}">{{ tag }}</a>
<a class="badge rounded-pill bg-body-tertiary text-decoration-none" href="{% url 'photologue:tag-detail' tag.slug %}">{{ tag }}</a>
{% endfor %}
</p>
{% endif %}