- The profile page upload and remove buttons in mobile are messed up because of afrux/asirem z-index in header hero
Image

Fix
.Hero {
z-index: unset !important;
}
- The Footer Bottom Line is invisible in mobile devices due to Acpl/MobileTab
Image

Fix
@media screen and (max-width: 767px) {
body {
padding-bottom: 50px;
}
}
- I can see that their is some extra css added in order to increase size of Acpl/MobileTab and that is
.MobileTab {
padding-top: 8px !important;
}
This is not really required maybe you may require it but in my case its increasing the size and not good looking.
- The size of post is small in mobile like if you see the original flarum without any theme the posts size are expanded and good looking but here due to Afrux/Asirem the post size in mobile is too smal; because of the below css
.Post {
margin: 0 0 15px 0;
}
Maybe Some changes in the above with custom css something like below
.Post {
margin: inherit !important;
}
In this discussion I just reported some css bugs If I gone off-topic let me know I will never post this kind of bug reports.