mirror of
https://github.com/discourse/discourse.git
synced 2024-11-21 21:07:21 +08:00
FIX: correctly account for composer height in PWA (#29656)
This commit is contained in:
parent
97cf069a06
commit
1d9f064d83
|
@ -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)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user