From 7ec0d0e57761ba134ecd86dcf6b6d3fbf8c62582 Mon Sep 17 00:00:00 2001 From: trevor-signal <131492920+trevor-signal@users.noreply.github.com> Date: Fri, 29 May 2026 10:00:10 -0400 Subject: [PATCH] Ensure emoji picker is clickable when dialogs are open --- stylesheets/components/fun/FunPopover.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stylesheets/components/fun/FunPopover.scss b/stylesheets/components/fun/FunPopover.scss index f4f1e80e29..674618891b 100644 --- a/stylesheets/components/fun/FunPopover.scss +++ b/stylesheets/components/fun/FunPopover.scss @@ -12,6 +12,10 @@ // do that display: flex; color: red; + + // Modal dialogs disable pointer events outside the dialog content. + // Fun overlays are portaled to the body, so they need to opt back in. + pointer-events: auto; } .FunPopover__Dialog {