Minor change in width of task stream (#1005)

This commit is contained in:
Shuchang Zheng
2024-10-18 12:03:11 -07:00
committed by GitHub
parent a6e257369b
commit 8271813077
2 changed files with 2 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ function ScrollableActionList({
}
return (
<div className="h-[40rem] w-1/4 rounded border bg-slate-elevation1">
<div className="h-[40rem] w-1/3 rounded border bg-slate-elevation1">
<div className="grid grid-cols-3 gap-2 p-4">
<div className="flex h-8 items-center justify-center rounded-sm bg-slate-700 px-3 text-xs text-gray-50">
Steps: {taskDetails.steps}

View File

@@ -247,7 +247,7 @@ function TaskActions() {
return (
<div className="flex gap-2">
<div className="w-3/4 rounded border">
<div className="w-2/3 rounded border">
<div className="h-full w-full p-4">
{selectedAction === "stream" ? getStream() : null}
{typeof selectedAction === "number" && activeAction ? (