Post composer becomes full screen when scrolling down on mobile

You could try this on mobile css. This will fix the portrait height to 250px but use the default full height to landscape mode.

#reply-control {
  @media (orientation: portrait) {
    .keyboard-visible &.open {
      height: 250px;
    }
  }
}