From db34b7163bfa46f3521c5a0ffd0252ae796b2959 Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+berry-13@users.noreply.github.com> Date: Fri, 31 Jul 2026 05:16:41 +0200 Subject: [PATCH] fix(client): pin the bash copy button while the command scrolls The button lived inside the scroll container with sticky/float positioning, so horizontal scrolling dragged it through the command text. It now sits absolutely in a non-scrolling wrapper around the scroller and stays in the corner on both axes. --- .../Chat/Messages/Content/Parts/BashCall.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/client/src/components/Chat/Messages/Content/Parts/BashCall.tsx b/client/src/components/Chat/Messages/Content/Parts/BashCall.tsx index 9db77c2396..ae21f6de32 100644 --- a/client/src/components/Chat/Messages/Content/Parts/BashCall.tsx +++ b/client/src/components/Chat/Messages/Content/Parts/BashCall.tsx @@ -135,20 +135,22 @@ export default function BashCall({ )} > {command && ( -
-
- {highlighted ?? command}
-
+
+
+ {highlighted ?? command}
+
+