From e5472da584707c0f569851a71e8e3419ecbefd11 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Tue, 2 Jun 2026 23:43:52 -0500 Subject: [PATCH] fix(desktop): drop sticky human clamp max-height transition --- apps/desktop/src/styles.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/desktop/src/styles.css b/apps/desktop/src/styles.css index 428845eefc1..eaf05cb2d7c 100644 --- a/apps/desktop/src/styles.css +++ b/apps/desktop/src/styles.css @@ -729,12 +729,11 @@ canvas { prompt doesn't dominate the viewport while you read the response stuck beneath it. The clamp lifts on hover / focus (clicking the bubble opens the edit composer, which already shows the full text). --human-msg-full is the - measured content height (set in UserMessage) so the expand/collapse animates - to the real height instead of overshooting the cap. */ + measured content height (set in UserMessage) so hover expand uses the real + height instead of overshooting the cap. */ .sticky-human-clamp { max-height: calc(2 * var(--dt-line-height) * var(--conversation-text-font-size) + 0.15rem); overflow: hidden; - transition: max-height 0.2s ease; } .sticky-human-clamp[data-clamped='true'] {