Skip to content

Commit

Permalink
limit max image height
Browse files Browse the repository at this point in the history
  • Loading branch information
abetlen committed Apr 26, 2024
1 parent 50e7c8f commit 425d5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ const ImageEdit = ({
</button>
</div>
{/* eslint-disable-next-line @next/next/no-img-element */}
<img src={url} alt="" />
<img src={url} alt="" className="max-h-[35rem]"/>
</div>
) : (
<div className="flex items-center">
Expand Down

0 comments on commit 425d5b1

Please sign in to comment.