Skip to content

Commit

Permalink
fixed border shift
Browse files Browse the repository at this point in the history
  • Loading branch information
gnehs committed Mar 2, 2024
1 parent 1efb38d commit be277b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(game)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ function Activity({
return (
<div
className={twMerge(
"flex items-center justify-between gap-4 break-all rounded-2xl px-4 py-2 shadow-[1px_3px_6px_0px_#0000001A]",
finished ? "bg-sitcon-secondary" : "border border-sitcon-secondary",
"flex items-center justify-between gap-4 break-all rounded-2xl border border-sitcon-secondary px-4 py-2 shadow-[1px_3px_6px_0px_#0000001A]",
finished ? "bg-sitcon-secondary" : "",
)}
onClick={() => setOpen(activity)}
>
Expand Down

0 comments on commit be277b5

Please sign in to comment.