fix(mobile): increase dialog content max-height to 90vh on mobile

Increases max-height of mat-mdc-dialog-content from default to 90vh on
mobile viewports (≤599px) to better utilize available screen space and
reduce unnecessary scrolling in dialogs like the schedule task dialog.
This commit is contained in:
Johannes Millan 2026-01-22 14:55:46 +01:00
parent 36f91a845f
commit a9b969f2f1

View file

@ -83,6 +83,10 @@ body .mat-mdc-dialog-content {
mat-form-field {
display: block;
}
@include media-queries.mq(xs, max) {
max-height: 90vh !important;
}
}
body .mat-mdc-dialog-surface {