Android keyboard overlaps text when flagging with Something else

Hello,

I can confirm :slightly_smiling_face: This is actually happens on all modal where the keyboard show up. I made a quick fix while the fix is coming. :slightly_smiling_face:

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.

7 Likes