fix(FN-1325): make new task dialog take up full height on mobile

- Add height: 100dvh and max-height: 100dvh to new-task-modal for mobile viewport support
- Fixes dialog not filling the mobile viewport height on smaller screens
This commit is contained in:
gsxdsm
2026-04-09 13:41:52 -07:00
parent f0578bdfa5
commit 2c7562eea2

View File

@@ -6082,6 +6082,8 @@ body {
.modal-lg {
width: 100%;
max-width: 100%;
height: 100vh;
height: 100dvh;
max-height: 100vh;
max-height: 100dvh;
border-radius: 0;