From 612bab1eb65242c81c7cace673b6bbd57b6df247 Mon Sep 17 00:00:00 2001 From: dotta Date: Sun, 5 Apr 2026 07:35:33 -0500 Subject: [PATCH] Make execution workspace detail page responsive for mobile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Reduce card padding on small screens (p-4 → p-4 sm:p-5) - Reduce spacing between sections on mobile (space-y-4 sm:space-y-6) - Scale heading text (text-xl sm:text-2xl) - Truncate long description on mobile, show full on sm+ - Reduce textarea min-heights on mobile (sm: prefix for larger sizes) - Stack linked issue cards vertically on mobile, horizontal scroll on sm+ - Remove min-width constraint on linked issue cards on mobile Co-Authored-By: Paperclip --- ui/src/pages/ExecutionWorkspaceDetail.tsx | 39 ++++++++++++----------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/ui/src/pages/ExecutionWorkspaceDetail.tsx b/ui/src/pages/ExecutionWorkspaceDetail.tsx index 7fdac3e9..a031ed84 100644 --- a/ui/src/pages/ExecutionWorkspaceDetail.tsx +++ b/ui/src/pages/ExecutionWorkspaceDetail.tsx @@ -378,7 +378,7 @@ export function ExecutionWorkspaceDetail() { return ( <> -
+
-
-
-
+
+
+
Execution workspace
-

{workspace.name}

+

{workspace.name}

- Configure the concrete runtime workspace that Paperclip reuses for this issue flow. These settings stay + Configure the concrete runtime workspace that Paperclip reuses for this issue flow. + These settings stay attached to the execution workspace so future runs can keep local paths, repo refs, provisioning, teardown, - and runtime-service behavior in sync with the actual workspace being reused. + and runtime-service behavior in sync with the actual workspace being reused.

@@ -482,7 +483,7 @@ export function ExecutionWorkspaceDetail() {