FIX: chat height was incorrect on ipad (#21289)
This commit is contained in:
parent
f29f131387
commit
e4029bfab8
|
@ -617,6 +617,14 @@ html.has-full-page-chat {
|
|||
grid-template-rows: calc(
|
||||
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px)
|
||||
);
|
||||
|
||||
.footer-nav-ipad & {
|
||||
grid-template-rows: calc(
|
||||
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
||||
var(--footer-nav-height, 0px)
|
||||
);
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
// prevents sidebar from overflowing behind the virtual keyboard
|
||||
height: 100%;
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
.chat-composer-container {
|
||||
.chat-composer {
|
||||
margin: 0.25rem 5px 0 5px;
|
||||
}
|
||||
html.keyboard-visible .footer-nav-ipad & {
|
||||
margin: 0.25rem 10px 1rem 10px;
|
||||
}
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
@import "base-desktop";
|
||||
@import "chat-channel-title";
|
||||
@import "chat-composer-uploads";
|
||||
@import "chat-composer";
|
||||
@import "chat-index-drawer";
|
||||
@import "chat-index-full-page";
|
||||
@import "chat-message-actions";
|
||||
|
|
Loading…
Reference in New Issue