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.
16 lines
664 B
HTML
16 lines
664 B
HTML
<a [routerLink]="route" class="bg-gray-200 m-2 flex flex-col items-center justify-between rounded-md overflow-hidden text-xl shadow-lg transform transition-all duration-300 hover:scale-105">
|
|
|
|
<div class="bg-linear-to-r from-indigo-500 to-pink-600 w-full text-center text-white font-medium rounded-t-md py-0.5 px-2">
|
|
<p>{{ hall() }}</p>
|
|
</div>
|
|
|
|
<h1 class="flex-1 flex items-center justify-center text-black font-bold text-3xl px-2 py-1">
|
|
{{ startTime() }}
|
|
</h1>
|
|
|
|
<div [style.background-color]="utilisationBackground()" [class]="fullStyle()" class="w-full text-center text-white font-medium rounded-b-md py-0.5 ">
|
|
<p>Tickets</p>
|
|
</div>
|
|
|
|
</a>
|