Skip to content

Commit

Permalink
Remove guttered styles from NextAndPrevLinks
Browse files Browse the repository at this point in the history
since it's used within main now
  • Loading branch information
tylermercer committed Sep 22, 2024
1 parent af3355f commit 00685e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/sections/NextAndPrevLinks.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type Props = {
const { next, prev, itemLabel } = Astro.props;
---

<nav class="u-guttered" aria-label={`Next and Previous ${itemLabel}`}>
<nav aria-label={`Next and Previous ${itemLabel}`}>
{prev && <a href={prev.url}>Previous: {prev.label}</a>}
{(prev && next) && <> &middot; </>}
{next && <a href={next.url}>Next: {next.label}</a>}
Expand Down

0 comments on commit 00685e0

Please sign in to comment.