Skip to content

Commit 18e2e1e

Browse files
committed
fix(web): widen task and chat drawers
1 parent eeebb1c commit 18e2e1e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/src/components/TaskDetail.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export function TaskDetail({ taskId, onClose, onRefresh, onAgentClick: _onAgentC
291291
>
292292
<SheetContent
293293
showCloseButton={false}
294-
className={`overflow-hidden p-0 gap-0 transition-all duration-200 ${chatOpen ? "!w-[calc(50%+3rem)]" : ""}`}
294+
className={`overflow-hidden p-0 gap-0 transition-all duration-200 !w-[60%] max-md:!w-full ${chatOpen ? "!w-[calc(60%+3rem)]" : ""}`}
295295
>
296296
<SheetTitle className="sr-only">{task.title}</SheetTitle>
297297
<SheetDescription className="sr-only">Task detail panel</SheetDescription>
@@ -345,7 +345,7 @@ export function TaskDetail({ taskId, onClose, onRefresh, onAgentClick: _onAgentC
345345
taskId={taskId}
346346
task={task}
347347
showOverlay={false}
348-
className="z-[60] !w-[45%] max-md:!w-full"
348+
className="z-[60] !w-[50%] max-md:!w-full"
349349
/>
350350
)}
351351
</>

apps/web/src/routes/BoardPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export function BoardPage() {
151151
}}
152152
taskId={chatTask?.id ?? null}
153153
task={chatTask}
154-
className="!w-[45%] max-md:!w-full"
154+
className="!w-[50%] max-md:!w-full"
155155
/>
156156

157157
{selectedAgent && (

0 commit comments

Comments
 (0)