From 3447e2087a69bdecd1bbe99a082eedeb6e42bbc7 Mon Sep 17 00:00:00 2001 From: dotta Date: Tue, 24 Mar 2026 10:40:59 -0500 Subject: [PATCH] Fix agent mention pill vertical misalignment with project mention pill Change vertical-align from baseline to middle on both editor and read-only mention chip styles. The baseline alignment caused inconsistent positioning because the agent ::before icon (0.75rem) and project ::before dot (0.45rem) produced different synthesized baselines in the inline-flex containers. Co-Authored-By: Paperclip --- ui/src/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/index.css b/ui/src/index.css index 4c08a9a2a..b0f839ec9 100644 --- a/ui/src/index.css +++ b/ui/src/index.css @@ -355,7 +355,7 @@ font-size: 0.75rem; line-height: 1.3; text-decoration: none; - vertical-align: baseline; + vertical-align: middle; white-space: nowrap; user-select: none; } @@ -746,7 +746,7 @@ a.paperclip-project-mention-chip { font-size: 0.75rem; line-height: 1.3; text-decoration: none; - vertical-align: baseline; + vertical-align: middle; white-space: nowrap; }