2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-13 10:35:27 +00:00

fix colors

This commit is contained in:
Matthias Mair
2022-04-22 20:54:36 +02:00
parent 1b55f83e96
commit dbbec51faa
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ notitle: true
<h4 class="fst-italic">Categories</h4>
<ol class="list-unstyled">
{% for categorie in page.categories %}
<li><a href="/categories/#{{ categorie | slugify }}"><span class="badge rounded-pill bg-warning">{{ categorie }}</span></a></li>
<li><a href="/categories/#{{ categorie | slugify }}"><span class="badge bg-yellow-500">{{ categorie }}</span></a></li>
{% endfor %}
</ol>
</div>
@ -33,7 +33,7 @@ notitle: true
<h4 class="fst-italic">Tags</h4>
<ol class="list-unstyled">
{% for tag in page.tags %}
<li><a href="/tags/#{{ tag | slugify }}"><span class="badge rounded-pill bg-info">{{ tag }}</span></a></li>
<li><a href="/tags/#{{ tag | slugify }}"><span class="badge bg-blue-400">{{ tag }}</span></a></li>
{% endfor %}
</ol>
</div>