FIX: Virtual keyboard for fullpage login/signup (#29543)

This change allows the form to resize when the virtual keyboard is shown on Chrome/Android
This commit is contained in:
Jan Cernik 2024-12-02 12:33:51 -03:00 committed by GitHub
parent 72f3cd252f
commit cb663b89cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

View File

@ -1,8 +1,24 @@
// Shared styles
.login-page,
.signup-page,
.invite-page {
#main-outlet,
#main-outlet-wrapper {
padding: 0;
}
}
.login-fullpage,
.signup-fullpage,
.invites-show {
justify-content: flex-start;
html.keyboard-visible:not(.ios-device) & {
height: calc((var(--composer-vh, 1vh) * 100) - var(--header-offset));
overflow-y: scroll;
}
.signup-body,
.login-body {
flex-direction: column;