Add middle class styling and adjust button margin

Introduced a new .middle CSS class for vertical centering in theater-layout-designer component. Updated ticket-validation button margin from mt-3 to mt-2 for improved spacing.
This commit is contained in:
2025-11-28 01:52:05 +01:00
parent 1f9c84ea36
commit 23f681fbd3
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
.middle {
position: relative;
top: 40%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}

View File

@@ -40,7 +40,7 @@
<button
mat-button
class="w-full mt-3"
class="w-full mt-2"
matButton="filled"
color="accent"
[disabled]="(loadingService.loading$ | async) || (formControl.invalid && !formControl.hasError('serverError'))"