Skip to content

Commit

Permalink
Make prev/next buttons use full width
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshenrik committed Jun 7, 2024
1 parent e5d06f5 commit 91387d0
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions src/layouts/ArtistLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -122,18 +122,16 @@ const image = imageType ? `${id}.${imageType}` : `${id}.jpg`;
}
</div>
</div>
<div class="col-span-3 md:col-span-4">
{
showPrevAndNextArtistNavigationLinks ? (
<ArtistNavigationLinks
previousArtist={previousArtist}
nextArtist={nextArtist}
compact
/>
) : null
}
</div>
</div>
{
showPrevAndNextArtistNavigationLinks ? (
<ArtistNavigationLinks
previousArtist={previousArtist}
nextArtist={nextArtist}
compact
/>
) : null
}
</div>

<div class="relative grid gap-1">
Expand Down

0 comments on commit 91387d0

Please sign in to comment.