FIX: correctly account for composer height in PWA (#29656)

This commit is contained in:
Joffrey JAFFEUX 2024-11-08 11:16:15 +09:00 committed by GitHub
parent 97cf069a06
commit 1d9f064d83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,6 +20,8 @@
// PWA/HUB without keyboard
html.footer-nav-visible:not(.keyboard-visible) & {
height: calc($base-height - var(--footer-nav-height, 0px));
height: calc(
$base-height - var(--composer-height, 0px) - var(--footer-nav-height, 0px)
);
}
}