Skip to content

Commit

Permalink
🔄 synced local 'skyvern-frontend/src/' with remote 'skyvern-frontend/…
Browse files Browse the repository at this point in the history
…src/'

<!-- ELLIPSIS_HIDDEN -->

> [!IMPORTANT]
> Adjusts the width of components in `ScrollableActionList.tsx` and `TaskActions.tsx` for better layout balance.
>
>   - **UI Changes**:
>     - In `ScrollableActionList.tsx`, change width from `w-1/4` to `w-1/3` for the main container.
>     - In `TaskActions.tsx`, change width from `w-3/4` to `w-2/3` for the main container.
>
> <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral)<sup> for 30fc500173c479081949b14559fc7fce3787478f. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Oct 18, 2024
1 parent a6e2573 commit 29cdd6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion skyvern-frontend/src/routes/tasks/detail/TaskActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? (
Expand Down

0 comments on commit 29cdd6d

Please sign in to comment.