XF 2.1 Next Previous button on mobile device

After searching for a solution on xenforo, could not find one.
In large threads on a PC you wil see a next-previous button on top AND botton of the screen.
The next-previous button is missing on mobile devices at the top of the screen. Is there a way to enable this? (Using Xenforo 2.1.2 with default style) and how and where should this be done?
 
The next-previous button is missing on mobile devices at the top of the screen. Is there a way to enable this? (Using Xenforo 2.1.2 with default style) and how and where should this be done?

CSS:
@media (max-width: @xf-responsiveNarrow){
    .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) {
        display: flex;
    }
    .block-outer-main, .block-outer-opposite {
        text-align: justify;
    }
}
;)
 
Top Bottom