Adjust delete button hover color

Change the delete button in the conversation history to use a lighter gray hover background for better visual feedback.
This commit is contained in:
gpt-engineer-app[bot]
2025-11-11 20:14:31 +00:00
parent 55cb7c0ae6
commit 218cfafb26
+1 -1
View File
@@ -224,7 +224,7 @@ export default function TestPrompt() {
e.stopPropagation();
handleDeleteConversation(conversation.id);
}}
className="absolute right-2 top-2 h-7 w-7 opacity-0 group-hover:opacity-100 transition-opacity"
className="absolute right-2 top-2 h-7 w-7 opacity-0 group-hover:opacity-100 transition-opacity hover:bg-muted/50"
>
<Trash2 className="h-4 w-4 text-destructive" />
</Button>