Hello,
I can confirm This is actually happens on all modal where the keyboard show up. I made a quick fix while the fix is coming.
Mobile / CSS
.fixed-modal {
html.keyboard-visible.mobile-device:not(.ios-device) & {
height: calc(100% - env(keyboard-inset-height));
.modal-inner-container {
margin: auto;
}
}
}
Edit: I just noticed now on iPad the html tag not contains the .ios-device
class and this code is activating on iPad mobile view too. So probable a good idea to restrict it to mobile devices. Iโve changed this code.