feat(email-viewer): add security tooltips, contact actions, and scroll fix

This commit is contained in:
Linus Rath
2026-03-15 18:52:57 +01:00
parent f4d34477a6
commit 73d6e581b7
+1 -1
View File
@@ -434,7 +434,7 @@ function InfoTooltip({ text }: { text: string }) {
className="text-muted-foreground/50 hover:text-muted-foreground transition-colors"
onMouseEnter={show}
onMouseLeave={hide}
onClick={(e) => { e.stopPropagation(); open ? hide() : show(); }}
onClick={(e) => { e.stopPropagation(); if (open) { hide(); } else { show(); } }}
aria-label="More info"
>
<HelpCircle className="w-3 h-3" />