Skip to content

Commit 95d73e2

Browse files
fix(ui): hover effect on scope delete button (#930)
1 parent 6cf4491 commit 95d73e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/routes/@[scope]/~/members.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ export function MemberItem(props: MemberItemProps) {
118118
<form method="POST" class="contents">
119119
<input type="hidden" name="userId" value={member.user.id} />
120120
<button
121-
class="hover:underline disabled:text-jsr-gray-300 disabled:cursor-not-allowed"
121+
class="hover:underline disabled:text-jsr-gray-300 disabled:cursor-not-allowed hover:text-red-600 motion-safe:transition-colors"
122122
name="action"
123123
value="deleteMember"
124124
disabled={props.isLastAdmin}
125125
title={props.isLastAdmin
126126
? "This is the last admin in this scope. Promote another member to admin before removing this one."
127127
: "Remove user"}
128128
>
129-
<TrashCan class="h-4 w-4" />
129+
<TrashCan class="h-5 w-5" />
130130
</button>
131131
</form>
132132
</div>

0 commit comments

Comments
 (0)