# Android keyboard overlaps text when flagging with Something else

**URL:** https://meta.discourse.org/t/android-keyboard-overlaps-text-when-flagging-with-something-else/249687
**Category:** Bug
**Created:** [December 22, 2022, 6:36pm UTC](https://meta.discourse.org/t/android-keyboard-overlaps-text-when-flagging-with-something-else/249687 "2022-12-22T18:36:09Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [December 23, 2022, 6:57pm UTC](https://meta.discourse.org/t/android-keyboard-overlaps-text-when-flagging-with-something-else/249687/4 "2022-12-23T18:57:34Z")

</div>

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

```scss
.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.

---

_[View the full topic](https://meta.discourse.org/t/android-keyboard-overlaps-text-when-flagging-with-something-else/249687)._
