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]
> Change background color of prompt input box in `PromptBox.tsx` to `bg-slate-700`.
>
>   - **UI Changes**:
>     - In `PromptBox.tsx`, changed the background color of the prompt input box by modifying the `div` class from `border-slate-700` with inline style to `bg-slate-700`.
>
> <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 3bf9df37f58ce9fefc14f28228c49f2809476c15. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
ykeremy committed Sep 30, 2024
1 parent 59c28f9 commit b8891db
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions skyvern-frontend/src/routes/tasks/create/PromptBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,9 @@ function PromptBox() {
<span className="text-2xl">
What task would you like to accomplish?
</span>
<div
className="flex w-[35rem] max-w-xl items-center rounded-xl border border-slate-700 py-2 pr-4"
style={{
background: "rgba(248, 250, 252, 0.05)",
}}
>
<div className="flex w-[35rem] max-w-xl items-center rounded-xl bg-slate-700 py-2 pr-4">
<Textarea
className="min-h-0 resize-none rounded-xl border-transparent px-4 text-slate-400 hover:border-transparent focus-visible:ring-0"
className="min-h-0 resize-none rounded-xl border-transparent px-4 hover:border-transparent focus-visible:ring-0"
value={prompt}
onChange={(e) => setPrompt(e.target.value)}
placeholder="Enter your prompt..."
Expand Down

0 comments on commit b8891db

Please sign in to comment.