UX: Fix composer position on Firefox for Android (#18403)

Co-authored-by: Jarek Radosz <jradosz@gmail.com>
This commit is contained in:
Rafael dos Santos Silva 2022-09-29 11:35:01 -03:00 committed by GitHub
parent 300db0615f
commit fb5695795f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -33,6 +33,14 @@
} }
} }
// Firefox for Android hack
@supports (-moz-appearance: none) {
.keyboard-visible #reply-control.open {
position: sticky;
height: calc(100vh - var(--header-offset, 4em));
}
}
.reply-to { .reply-to {
justify-content: space-between; justify-content: space-between;
margin-bottom: 6px; margin-bottom: 6px;