On the main Agent Tickets page, if there is a long Ticket Status name, it forces the statuses off-screen to the left while in Portrait Mode on a mobile device. The statuses stay on-screen while in Landscape Mode. Tested on my own instance and the demo instance and was able to replicate the bug there.
osTicket v1.16.3 // osTicket-1.16.3-Awesome-101
PHP 8.0.20 // MySQL 8.0.29 // Apache/2.4.54 (Ubuntu) web server

Thanks,
Zach
Hi Zack,
I will add this code to the next release, but for now you can toss it in Theme Options > Custom CSS:
@media screen and (max-width: 760px) {
.pull-right.flush-right .action-button[data-original-title=" Assign"],
.pull-right.flush-right .action-button[data-original-title="Change Status"] {
float: right;
margin: 0 0 0 6px;
}
}