fix(ios): position add task bar above keyboard

Use --keyboard-height CSS variable to position the add task bar above
the iOS keyboard when it appears. Adds smooth transition for better UX.
This commit is contained in:
Johannes Millan 2026-01-20 14:55:35 +01:00
parent e942db5ade
commit 292337ed6c

View file

@ -33,7 +33,8 @@
:host-context(.isTouchOnly).global {
top: auto;
bottom: var(--s);
bottom: calc(var(--keyboard-height) + var(--s));
transition: bottom 0.3s ease-out;
}
.add-task-container {