send: update layout on mobile

On mobile the keyboard covered half of the buttons, changed form
to be aligned at the top of the screen and made textarea a bit
smaller so that the mobile keyboard and the form are both visible.
pull/39/head
OFF0 1 year ago
parent edbb861bf1
commit 9f992044b2
Signed by: offbyn
GPG Key ID: 94A2F643C51F37FA

@ -76,6 +76,14 @@ textarea:focus {
#newMessage textarea:focus {
min-height: 18rem;
}
@media (orientation: portrait) {
#newMessage textarea {
min-height: 8rem;
}
#newMessage textarea:focus {
min-height: 15rem;
}
}
.buttons {
align-items: center;

@ -24,6 +24,11 @@
width: 100vw;
z-index: 20;
}
@media (orientation: portrait) {
#newMessage {
align-items: start;
}
}
#newMessage #writeForm {
align-items: start;

Loading…
Cancel
Save