Hello!
When I was testing Flarum on mobile (<768px) and noticed that Composer dialog opens in fullscreen on mobile (which is nice), but i can still scroll trough page and loose my Composer dialog. Shouldn't .Composer be "position:fixed" in mobile? Like:
@media screen and (max-width: 767px) {
.Composer:not(.minimised) {
position: fixed !important;
}
}
I think it is lot more comfortable for mobile user to post like this.