Skip to content

Commit

Permalink
feat(MyEvent): adjust QR for smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
joseglego committed Sep 25, 2024
1 parent 808dd61 commit 7f6712e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/MyEvent/MyEvent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Ticket = ({
<Card className="h-full bg-white p-6 text-black">
<div className="relative mx-auto mt-4 w-full max-w-[90%] text-center">
<div className={cn(showQR ? "" : "blur-lg")}>
<QRCode className="mx-auto" value={ticket.id} />
<QRCode className="mx-auto max-w-[90%]" value={ticket.id} />
</div>
<Button
className="mt-8"
Expand Down

0 comments on commit 7f6712e

Please sign in to comment.