I was just playing around with simply moving the scrubber menu on mobile down to the bottom as the bottom nav bar. I guess it’s kind of like how Discourse does it. Post counter on the bottom. But, by doing that you open up a lot of space up top for a logo, notifications, this and that. And, it would be fixed, so you never need to scroll to top just to see what post you’re on or which page you’re on. Which I assume you might have to do with a layout that moves it just under the top nav bar. To begin playing around with this, you may simply add this CSS to your custom CSS.
@media (max-width: 767px) {
.PostStreamScrubber .Dropdown-toggle {
position: fixed;
right: 0px;
bottom: 0px;
background-color: @header-bg !important;
}
.App-titleControlt, .App-titleControl > .Button {
position: fixed !important;
right: 0px;
bottom: 0px;
background-color: @header-bg !important;
width: 100% !important;
height: 55px;
}
}
It’s actually really nice the more I test it. It’s really close to your thumb. You are able to effortlessly tap and use the scrubber to scroll through a thread. Easier on your thumb than reaching for anywhere at the top to get to that drawer menu or scrubber.
There is of course a double tap needed at times in iOS Safari because of the silly iOS swipe bar. But, I think most iOS users would understand. It’s one of the prices you pay for loving iPhones. 😆