Fixed bug in pagination on mobile device

This commit is contained in:
Damien Broqua 2022-02-23 22:46:37 +01:00
parent 549614773b
commit a175e39eed
2 changed files with 17 additions and 6 deletions

View file

@ -55,12 +55,12 @@
}
}
.pagination-previous {
.pagination-previous-next {
order: 2;
}
.pagination-next {
order: 3;
}
// .pagination-next {
// order: 3;
// }
.pagination-link {
&.is-current {
@ -80,4 +80,13 @@
justify-content: flex-start;
order: 1;
}
@include respond-to("small") {
flex-direction: column;
.pagination-previous-next {
margin-bottom: 1rem;
order: 1;
}
}
}