mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 06:28:57 +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
|
// PWA/HUB without keyboard
|
||||||
html.footer-nav-visible:not(.keyboard-visible) & {
|
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