feat: update delete button color to brighter red

Change button color and add focus styles for better visibility.

Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com>
This commit is contained in:
v0
2026-02-04 16:30:43 +00:00
parent 4c67cc066f
commit 25158a5086

View File

@@ -1254,7 +1254,7 @@ function TokenCard({ token, code, timeLeft, showCode, onCopy, onEdit, onDelete,
<Edit2 className="h-4 w-4 mr-2" />
{t.edit}
</DropdownMenuItem>
<DropdownMenuItem onClick={onDelete} className="text-destructive">
<DropdownMenuItem onClick={onDelete} className="text-red-500 focus:text-red-500 focus:bg-red-500/10">
<Trash2 className="h-4 w-4 mr-2" />
{t.delete}
</DropdownMenuItem>