UX: reduce composer jumpiness on android (#15184)
This commit is contained in:
parent
63112f89a3
commit
6d2eae27a6
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue