I tested on my Github page and it worked correctly. Then, copied here. Issue: Blog page navigation extends layout of the page in small screens. Fixes: #2841
This commit is contained in:
parent
b7ee266824
commit
9674cfc8e5
@ -3,7 +3,7 @@
|
||||
<ul class="pagination pagination-lg justify-content-center">
|
||||
<li class="page-item {% unless paginator.previous_page %}disabled{% endunless %}">
|
||||
<a class="page-link" href="{{ paginator.previous_page_path | relative_url }}" tabindex="-1" aria-disabled="{{ paginator.previous_page }}"
|
||||
>Newer</a
|
||||
><</a
|
||||
>
|
||||
</li>
|
||||
{% if paginator.page_trail %}
|
||||
@ -14,7 +14,7 @@
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
<li class="page-item {% unless paginator.next_page %}disabled{% endunless %}">
|
||||
<a class="page-link" href="{{ paginator.next_page_path | relative_url }}">Older</a>
|
||||
<a class="page-link" href="{{ paginator.next_page_path | relative_url }}">></a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
@ -589,6 +589,7 @@ footer.sticky-bottom {
|
||||
.page-item {
|
||||
.page-link {
|
||||
color: var(--global-text-color);
|
||||
padding: 0.75rem 1.15rem;
|
||||
|
||||
&:hover {
|
||||
color: $black-color;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user