Skip to content

Commit

Permalink
fix paddingg on cards
Browse files Browse the repository at this point in the history
  • Loading branch information
choden-dev committed Nov 2, 2024
1 parent 894e466 commit 6b9d7da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const EventsCardPreview = ({
<div
className={`border-gray-3 navbar-shadow flex w-full flex-col items-center
justify-center gap-2 rounded-md border bg-white p-4 sm:flex-row
sm:px-10 sm:py-${variant === "admin" ? 10 : 12} ${isPastEvent && "brightness-50"}`}
sm:px-10 ${variant === "admin" ? "sm:py-10" : "sm:py-12"} ${isPastEvent && "brightness-50"}`}
>
<div className="border-gray-3 h-fit max-h-[150px] w-[200px] overflow-hidden border">
<Image
Expand Down

0 comments on commit 6b9d7da

Please sign in to comment.