FIX: ensures chat composer docks to topic composer (#21610)

This commit is contained in:
Joffrey JAFFEUX 2023-05-17 11:16:03 +02:00 committed by GitHub
parent e7779615e6
commit df2614c0fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,8 @@
height: calc(
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
var(--chat-draft-header-height, 0px) -
var(--chat-direct-message-creator-height, 0px) - $inset
var(--chat-direct-message-creator-height, 0px) -
var(--composer-height, 0px) - $inset
);
// mobile with keyboard opened
@ -20,7 +21,8 @@
height: calc(
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
var(--footer-nav-height, 0px) - var(--chat-draft-header-height, 0px) -
var(--chat-direct-message-creator-height, 0px)
var(--chat-direct-message-creator-height, 0px) -
var(--composer-height, 0px)
);
}