fix(app): make the bell badge click-through (number opens the log too)

pointer-events:none lets clicks/hover pass through the unread badge to the
bell button beneath, which the badge was previously swallowing.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-15 13:31:47 +07:00
parent 897a3be659
commit 3dc3da072c
+1
View File
@@ -80,6 +80,7 @@ export function TopBar({
borderRadius: 7, background: COLORS.stError, color: "#fff",
fontFamily: FONT.ui, fontSize: 9, fontWeight: 700,
display: "flex", alignItems: "center", justifyContent: "center", boxSizing: "border-box",
pointerEvents: "none", // let clicks/hover pass through to the bell button beneath
}}>
{unread > 99 ? "99+" : unread}
</span>