Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
Add back artwork padding, align items to bottom, add margin (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
littletof committed Jun 28, 2020
1 parent 82e77a1 commit ec99fdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/artwork.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const ArtworkPage = () => {
</a>
</p>
</div>
<div className="my-16 flex flex-row flex-wrap gap-16 justify-evenly">
<div className="my-16 flex flex-row flex-wrap gap-16 justify-evenly items-end">
{ARTWORKS.map((artwork, i) => (
<Item key={i} artwork={artwork} />
))}
Expand All @@ -42,7 +42,7 @@ const ArtworkPage = () => {

function Item({ artwork }: { artwork: Artwork }) {
return (
<div>
<div className="p-2 mx-1 mb-5">
<div className="flex justify-center">
<img
src={artwork.image}
Expand Down

0 comments on commit ec99fdc

Please sign in to comment.