On small screens, (below 500px) the pagination becomes centred but if you use an RTL language the pagination does not become centred due to a missing float and text align rule in the bidi.css file.
I have added screen shots of both LTR and RTL so you can see the difference.
File:
bidi.css
|
Find:
.rtl p.responsive-center {
|
float: none; |
text-align: center;
|
margin-bottom: 5px;
|
}
|
Add Below:
.rtl .action-bar > .pagination {
|
float: none; |
text-align: center;
|
}
|