FIX: removes uneeded footer-nav-height subtraction (#20336)
This was incorrectly added.
This commit is contained in:
parent
eb0caed75a
commit
5ebf016a3f
|
@ -606,8 +606,7 @@ html.has-full-page-chat {
|
||||||
#main-outlet-wrapper {
|
#main-outlet-wrapper {
|
||||||
// restrict the row height, including when virtual keyboard is open
|
// restrict the row height, including when virtual keyboard is open
|
||||||
grid-template-rows: calc(
|
grid-template-rows: calc(
|
||||||
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px)
|
||||||
var(--footer-nav-height, 0px)
|
|
||||||
);
|
);
|
||||||
.sidebar-wrapper {
|
.sidebar-wrapper {
|
||||||
// prevents sidebar from overflowing behind the virtual keyboard
|
// prevents sidebar from overflowing behind the virtual keyboard
|
||||||
|
|
Loading…
Reference in New Issue