Skip to content

Commit

Permalink
fix: decrease opacity on disabled checklist items
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Jul 19, 2024
1 parent f8f3484 commit 2f86754
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/screens/wallet/OnboardingChecklist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ function ChecklistItem({
<div
className={cn(
"flex flex-col p-3 relative group rounded-lg",
!checked && !disabled && "hover:bg-muted"
!checked && !disabled && "hover:bg-muted",
disabled && "opacity-50"
)}
>
{!checked && !disabled && (
Expand Down

0 comments on commit 2f86754

Please sign in to comment.