Skip to content

Commit 3f093ef

Browse files
fix: add hover transparency and rounded top to ApiKeyListItem actions (#26150)
Co-authored-by: Dhairyashil Shinde <[email protected]>
1 parent 21958dd commit 3f093ef

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/features/ee/api-keys/components/ApiKeyListItem.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,14 @@ const ApiKeyListItem = ({
8484
{t("edit") as string}
8585
</DropdownItem>
8686
</DropdownMenuItem>
87-
<DropdownMenuItem>
87+
<DropdownMenuItem className="hover:bg-transparent">
8888
<DropdownItem
8989
type="button"
9090
color="destructive"
9191
disabled={deleteApiKey.isPending}
9292
onClick={() => setDeleteDialogOpen(true)}
93-
StartIcon="trash">
93+
StartIcon="trash"
94+
className="rounded-t-none">
9495
{t("delete") as string}
9596
</DropdownItem>
9697
</DropdownMenuItem>

0 commit comments

Comments
 (0)