UX: reduce composer jumpiness on android (#15184)

This commit is contained in:
Kris 2021-12-03 17:02:22 -05:00 committed by GitHub
parent 63112f89a3
commit 6d2eae27a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -23,11 +23,14 @@
}
.keyboard-visible &.open {
height: calc(var(--composer-vh, 1vh) * 100);
height: 100%; // Android: Reduces composer jumpiness when the keyboard toggles
}
.keyboard-visible body.ios-safari-composer-hacks &.open .reply-area {
padding-bottom: 0px;
.keyboard-visible body.ios-safari-composer-hacks &.open {
height: calc(var(--composer-vh, 1vh) * 100);
.reply-area {
padding-bottom: 0px;
}
}
.reply-to {