feat: adopt main website styles

This commit is contained in:
Björn Fromme
2024-12-04 09:33:09 +01:00
parent 273db3bdb7
commit 2454cfa682
17 changed files with 274 additions and 159 deletions
+3 -2
View File
@@ -232,10 +232,11 @@
</div>
<div class="flex justify-between">
<a href="{{ path('app_bookings') }}"
class="btn">
class="button bg-button">
zurück
</a>
<button type="submit" class="btn btn--secondary">
<button type="submit"
class="button bg-button bg-button--secondary">
Aktualisieren
</button>
</div>
+3 -3
View File
@@ -49,17 +49,17 @@
<div class="flex sm:flex-col space-x-2 sm:space-x-0 sm:space-y-1">
{% if booking.editable %}
<a href="{{ path('app_booking_edit', { 'id': booking.id }) }}"
class="btn btn--small btn--secondary">
class="button bg-button bg-button--secondary button--small">
bearbeiten
</a>
{% endif %}
<a href="{{ path('app_booking_confirmation', { 'id': booking.id }) }}"
class="btn btn--small"
class="button bg-button button--small"
target="_blank">
Bestätigung
</a>
<a href="{{ path('app_booking_documents', { 'id': booking.id }) }}"
class="btn btn--small"
class="button bg-button button--small"
target="_blank">
Reisedokumente
</a>