We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d9cdfe commit 0c0340fCopy full SHA for 0c0340f
1 file changed
theme/partials/page-nav.html
@@ -1,7 +1,7 @@
1
<nav>
2
- <ul class="page-nav hidden-print">
+ <ul class="list-unstyled page-nav row w-100 mt-5 mb-3 pt-5 pb-3">
3
{# Previous page #}
4
- <li class="page-nav__item">
+ <li class="col text-nowrap text-md-start">
5
{% if page.previous_page and not page.previous_page.title.startswith("_") %}
6
<a rel="prev" class="page-nav__link page-nav__link--prev" href="{{ page.previous_page.url|url }}">
7
<i class="bi bi-chevron-left"></i>
@@ -11,7 +11,7 @@
11
</li>
12
13
{# Next page #}
14
+ <li class="col text-nowrap text-md-end pe-0">
15
{% if page.next_page and not page.next_page.title.startswith("_") %}
16
<a rel="next" class="page-nav__link page-nav__link--next" href="{{ page.next_page.url|url }}">
17
{{ page.next_page.title }}
0 commit comments