Fix iPhone keyboard covering form inputs inside modal
Some checks failed
E2E Tests / e2e (push) Has been cancelled
Tests and checks on push / run-checks-and-tests (push) Has been cancelled
Updates translation progress / update-translation-progress-issue (push) Has been cancelled

This commit is contained in:
Kalle
2026-07-19 16:51:48 +03:00
parent ebb053c49d
commit f33c35c105

View File

@@ -34,7 +34,7 @@
.modal {
width: 100%;
max-width: 28rem;
max-height: 80dvh;
max-height: min(80dvh, calc(var(--visual-viewport-height, 100dvh) - 10rem));
overflow-x: hidden;
overflow-y: auto;
border-radius: 1rem;
@@ -54,7 +54,7 @@
}
:global(html[data-fuse="true"]) .modal {
max-height: 72dvh;
max-height: min(72dvh, calc(var(--visual-viewport-height, 100dvh) - 10rem));
}
.fullScreenModal {