Update routing and UI for performance checkout

Changed route paths and parameters for performance checkout to use '/performance/:performanceId/checkout' instead of '/selection/performance/:id'. Updated related components to use new route and param names. Improved UI spacing and styling in several components for better layout and consistency.
This commit is contained in:
2025-11-18 21:00:29 +01:00
parent 4408bc9b84
commit 78144d7447
11 changed files with 21 additions and 21 deletions

View File

@@ -1,8 +1,8 @@
<app-menu-header label="Vorstellungstickets kaufen" icon="local_activity" [backToSchedule]="true"></app-menu-header>
<div class="flex justify-between h-100">
<div class="flex h-fit">
<div class="w-7/10 p-10 h-188">
<div class="w-7/10 p-10 h-fit">
<div>
@if (!performance && (loading.loading$ | async)){
<div class="w-full h-full flex items-center justify-center mt-70">
@@ -18,6 +18,6 @@
</div>
</div>
<app-order class="m-10 mr-20 w-3/10" [performance]="performance" [seatCategories]="seatCategories"></app-order>
<app-order class="mt-10 mr-30 w-3/10" [performance]="performance" [seatCategories]="seatCategories"></app-order>
</div>