Add delete button popover (#132)

Co-authored-by: antanst <>
This commit is contained in:
Antonis Anastasiadis 2025-07-09 15:53:45 +03:00 committed by GitHub
parent 220bc92b4a
commit ba9fec87a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -251,7 +251,7 @@ const InboxItemDetail: React.FC<InboxItemDetailProps> = ({
<button
onClick={handleDelete}
className={`p-2 text-red-600 dark:text-red-400 hover:bg-red-100 dark:hover:bg-red-900 rounded-full transition-opacity ${isHovered ? 'opacity-100' : 'opacity-0'}`}
title={t('common.delete')}
title={t('common.delete', 'Delete')}
>
<TrashIcon className="h-4 w-4" />
</button>