Skip to content

Commit

Permalink
image bottom right should not be rounded
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewheeler committed Dec 10, 2024
1 parent 93b2282 commit 9e1c8eb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/products/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,13 @@ function ProductCard({
<div className="grid h-full grid-cols-1 items-start lg:max-w-[33.75rem]">
{imgSrc ? (
<div>
<RoundedImage src={imgSrc} width="540" height="200" alt="" />
<RoundedImage
className="rounded-br-none"
src={imgSrc}
width="540"
height="200"
alt=""
/>
</div>
) : null}
<div className="p-6">
Expand Down

0 comments on commit 9e1c8eb

Please sign in to comment.