2
0
Fork 0

Fix margin around buttons

This commit is contained in:
Luca 2023-05-06 14:17:27 +02:00
parent ab6bc3e419
commit 909a12b0d4
1 changed files with 2 additions and 2 deletions

View File

@ -9,9 +9,9 @@
<strong>Dauer:</strong> {{ shift.duration }} <strong>Dauer:</strong> {{ shift.duration }}
</div> </div>
<div class="buttons is-right"> <div class="buttons is-right">
<a class="button is-info is-small" href="{% url 'shift' shift.id %}">Details</a> <a class="button is-info is-small mr-0" href="{% url 'shift' shift.id %}">Details</a>
{% if not registered %} {% if not registered %}
<a class="button is-primary is-small ml-3" href="{% url 'shift' shift.id %}">Mithelfen</a> <a class="button is-primary is-small mr-0" href="{% url 'shift' shift.id %}">Mithelfen</a>
{% endif %} {% endif %}
</div> </div>
</div> </div>