chore: update dates, deps, icons

This commit is contained in:
Cory Dransfeldt 2023-06-21 12:03:58 -07:00
parent 86a91e87c7
commit c59917f917
No known key found for this signature in database
196 changed files with 254 additions and 256 deletions

View file

@ -3,7 +3,7 @@
{% if pagination.href.previous %}
<a href="{{ pagination.href.previous }}">
<button class="py-2 pr-4 dark:text-purple-400 text-purple-600 hover:text-purple-500 dark:hover:text-purple-500" aria-label="Previous page">
{% heroicon "solid" "arrow-left" "Previous" "width=20 height=20" %}
{% heroicon "outline" "arrow-left" "Previous" "width=20 height=20" %}
</button>
</a>
{% else %}
@ -11,7 +11,7 @@
class="py-2 pr-4 cursor-not-allowed disabled:opacity-50"
aria-label="Previous page (disabled)"
disabled>
{% heroicon "solid" "arrow-left" "Prevous" "width=20 height=20" %}
{% heroicon "outline" "arrow-left" "Prevous" "width=20 height=20" %}
</button>
{% endif %}
@ -32,7 +32,7 @@
{% if pagination.href.next %}
<a href="{{ pagination.href.next }}">
<button class="py-2 pl-4 dark:text-purple-400 text-purple-600 hover:text-purple-500 dark:hover:text-purple-500" aria-label="Next page">
{% heroicon "solid" "arrow-right" "Next" "width=20 height=20" %}
{% heroicon "outline" "arrow-right" "Next" "width=20 height=20" %}
</button>
</a>
{% else %}
@ -40,7 +40,7 @@
class="py-2 pl-4 cursor-not-allowed disabled:opacity-50"
aria-label="Next page (disabled)"
disabled>
{% heroicon "solid" "arrow-right" "Next" "width=20 height=20" %}
{% heroicon "outline" "arrow-right" "Next" "width=20 height=20" %}
</button>
{% endif %}
</nav>