Skip to content

Commit

Permalink
remove color from nav icons
Browse files Browse the repository at this point in the history
  • Loading branch information
edmadrid committed Feb 9, 2024
1 parent 3865459 commit b6073c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions site/_includes/components/items/carousel.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<p>I'm some additional info if needed.</p>
</div>
<div class="hidden md:block flex-1 text-right pr-10">
<button class="prev h-8 w-8 md:h-12 md:w-12 md:-mr-2 hover:text-accent">{% include "svg/arrow-left.svg" %}</button>
<button class="next h-8 w-8 md:h-12 md:w-12 hover:text-accent">{% include "svg/arrow-right.svg" %}</button>
<button class="prev h-8 w-8 md:h-12 md:w-12 md:-mr-2 text-neutral-950 hover:text-accent">{% include "svg/arrow-left.svg" %}</button>
<button class="next h-8 w-8 md:h-12 md:w-12 text-neutral-950 hover:text-accent">{% include "svg/arrow-right.svg" %}</button>
</div>
</div>

Expand Down
4 changes: 2 additions & 2 deletions site/pages/items.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ permalink: "/item/{{ item.id }}.html"
<h1 class="text-3xl md:text-4xl font-bold">{{ item.label }}</h1>
</div>
<div class="basis-1/4 h-12 text-primary text-right flex justify-end">
<a href="{{ pagination.href.previous | default: pagination.href.last | url }}" class="-mr-1 hover:text-accent" data-tip="Previous item">{% include "svg/arrow-left.svg" %}</a>
<a href="{{ pagination.href.next | default: pagination.href.first | url }}" class="hover:text-accent" data-tip="Next item">{% include "svg/arrow-right.svg" %}</a>
<a href="{{ pagination.href.previous | default: pagination.href.last | url }}" class="-mr-1 text-neutral-950 hover:text-accent" data-tip="Previous item">{% include "svg/arrow-left.svg" %}</a>
<a href="{{ pagination.href.next | default: pagination.href.first | url }}" class="text-neutral-950 hover:text-accent" data-tip="Next item">{% include "svg/arrow-right.svg" %}</a>
</div>
</div>
<article id="item-content-area" class="px-5 pb-5 md:flex">
Expand Down

0 comments on commit b6073c2

Please sign in to comment.