chore: pagination style consistency
This commit is contained in:
parent
a29ed27e9f
commit
97cb380f15
1 changed files with 2 additions and 2 deletions
|
@ -14,8 +14,8 @@
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="flex flex-row gap-2 items-center">
|
<div class="flex flex-row items-center">
|
||||||
<select id="pagination" class="inline rounded-lg p-1 text-center border border-primary-500 dark:text-white dark:bg-gray-900 text-gray-800 focus-visible:border-primary-400 focus-visible:outline-none">
|
<select id="pagination" class="mr-1 inline rounded-lg px-1 appearance-none text-center border border-primary-500 dark:text-white dark:bg-gray-900 text-gray-800 focus-visible:border-primary-400 focus-visible:outline-none cursor-pointer relative">
|
||||||
{% for pageEntry in pagination.pages %}
|
{% for pageEntry in pagination.pages %}
|
||||||
<option {% if page.url == pagination.hrefs[forloop.index0] %}selected{% endif %} value="{{ forloop.index }}">{{ forloop.index }}</option>
|
<option {% if page.url == pagination.hrefs[forloop.index0] %}selected{% endif %} value="{{ forloop.index }}">{{ forloop.index }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Reference in a new issue