Skip to content

Commit

Permalink
fix: remove uppercase on card badges
Browse files Browse the repository at this point in the history
  • Loading branch information
paulovareiro29 committed Sep 24, 2024
1 parent a584e59 commit e7befab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/partials/base/b_card.twig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<h3 class='card-title h5 d-flex gap-2 align-items-center mb-0'>
<strong>{{ title }}</strong>
{% if tag %}
<span class='badge badge-small text-primary fw-normal text-uppercase'>{{ tag }}</span>
<span class='badge badge-small text-primary fw-normal'>{{ tag }}</span>
{% endif %}
</h3>
<p class='card-subtitle m0 text-muted'>{{ subtitle }}</p>
Expand All @@ -25,7 +25,7 @@
{% if formats %}
<div>
{% for format in formats %}
<span class='badge badge-small text-bg-primary rounded-pill text-uppercase'>{{ format | upper }} </span>
<span class='badge badge-small text-bg-primary rounded-pill'>{{ format | upper }} </span>
{% endfor %}
</div>
{% endif %}
Expand Down

0 comments on commit e7befab

Please sign in to comment.