Skip to content

Commit

Permalink
style: fix gallery grid for 2xl screens (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocaillard authored Sep 25, 2023
1 parent 8882907 commit 4814b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/GalleryFull.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const GalleryFull = ({

return (
<>
<div className="grid grid-cols-3 gap-4 lg:grid-cols-4 xl:grid-cols-5 2xl:grid-cols-5 3xl:grid-cols-6">
<div className="grid grid-cols-3 gap-4 lg:grid-cols-4 xl:grid-cols-5 2xl:grid-cols-5">
{items.map((i, index) => (
<InscriptionCard key={i?.id ?? index} inscription={i} light />
))}
Expand Down

1 comment on commit 4814b0c

@vercel
Copy link

@vercel vercel bot commented on 4814b0c Sep 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.