From 9af30e37e6d0c4a2a56dc1d2b980307235ec171a Mon Sep 17 00:00:00 2001 From: npub1223z34hd7vtwc6qj4s7flsxkj644nlre2nthu7lrrmkumhu3xddsrx9r6w <52a228d6edf316ec6812ac3c9fc0d696ab59fc7954d77e7be31eedcddf91335b@sprout-oss.stage.blox.sqprod.co> Date: Mon, 15 Jun 2026 00:13:04 -0700 Subject: [PATCH] fix(composer): scale mention highlight with zoom, align to timeline chip The composer's Tiptap .mention-highlight pill used a hardcoded font-size: 15px, freezing it against Cmd +/- zoom (which scales the root rem font-size). Convert to 1rem so it scales, and align to the timeline mention chip's text-base (1rem) sizing per #1052's chat-base type scale. Emoji-mart picker --font-size left as-is per scope. Co-authored-by: Taylor Ho Signed-off-by: Taylor Ho --- desktop/src/shared/styles/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/shared/styles/globals.css b/desktop/src/shared/styles/globals.css index bb3fdb249..d67c9eff2 100644 --- a/desktop/src/shared/styles/globals.css +++ b/desktop/src/shared/styles/globals.css @@ -615,7 +615,7 @@ border-radius: 4px; background: hsl(var(--primary) / 0.15); padding: 3px 4px 2px; - font-size: 15px; + font-size: 1rem; line-height: 1; color: hsl(var(--primary)); font-weight: 500;