Theme capsules more uniformly

This commit is contained in:
2026-03-03 17:58:22 +00:00
parent 9646931181
commit 8e0be6ca89
3 changed files with 16 additions and 17 deletions

View File

@@ -15,7 +15,7 @@
<article class="box">
<div class="is-flex is-justify-content-space-between is-align-items-center" style="gap: 0.5rem; margin-bottom: 0.6rem;">
<h2 class="title is-6" style="margin: 0;">Epics</h2>
<span class="tag is-light">{{ epics|length }}</span>
<span class="tag task-ui-badge">{{ epics|length }}</span>
</div>
<form method="post" style="margin-bottom: 0.75rem;">
{% csrf_token %}
@@ -35,7 +35,7 @@
{% for epic in epics %}
<tr>
<td><a href="{% url 'tasks_epic' epic_id=epic.id %}">{{ epic.name }}</a></td>
<td><span class="tag is-light">{{ epic.task_count }}</span></td>
<td><span class="tag task-ui-badge">{{ epic.task_count }}</span></td>
<td class="has-text-right">
<form method="post">
{% csrf_token %}