chore: less styles, if we can

This commit is contained in:
Cory Dransfeldt 2024-01-02 09:27:18 -08:00
parent f211c70d5b
commit f21089c472
No known key found for this signature in database
3 changed files with 152 additions and 200 deletions

View file

@ -1,10 +1,10 @@
<footer>
<nav class="social__main flex--centered">
<nav class="flex--centered text-center">
{% for link in nav.social %}
{% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
{% endfor %}
</nav>
<nav class="links__secondary flex--centered text-center">
<nav class="flex--centered text-center">
{% for link in nav.footer %}
{% render "partials/nav/link.liquid", page: page, link: link.name, icon: link.icon %}
{% if not forloop.last %}<span>•</span>{% endif %}

View file

@ -1,6 +1,6 @@
<nav class="pagination flex--centered">
{% if pagination.href.previous %}
<a href="{{ pagination.href.previous }}">
<a class="link--icon" href="{{ pagination.href.previous }}">
<button aria-label="Previous page [&>svg]:h-5 [&>svg]:w-5">
{% tablericon "arrow-left" "Previous" %}
</button>
@ -17,7 +17,7 @@
{{ pagination.pageNumber | plus: 1 }} of {{ pagination.links.size }}
</div>
{% if pagination.href.next %}
<a href="{{ pagination.href.next }}">
<a class="link--icon" href="{{ pagination.href.next }}">
<button aria-label="Next page">
{% tablericon "arrow-right" "Next" %}
</button>