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]
> Rounds top edges of template cards in `WorkflowTemplateCard.tsx`.
>
>   - **UI Enhancement**:
>     - Rounds the top edges of template cards in `WorkflowTemplateCard.tsx` by adding `rounded-t-xl` to the outer `div` containing the image.
>
> <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 fb9cb977c9b7e2d9fcfc1d0a61217809535d153b. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Feb 4, 2025
1 parent b41bfd7 commit 0696a30
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions skyvern-frontend/src/routes/discover/WorkflowTemplateCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@ type Props = {
function WorkflowTemplateCard({ title, image, onClick }: Props) {
return (
<div className="h-48 w-56 cursor-pointer rounded-xl" onClick={onClick}>
<div className="h-28 bg-slate-elevation1 px-6 pt-6">
<img
src={image}
alt={title}
className="h-full w-full rounded-t-xl object-cover"
/>
<div className="h-28 rounded-t-xl bg-slate-elevation1 px-6 pt-6">
<img src={image} alt={title} className="h-full w-full object-cover" />
</div>
<div className="h-20 space-y-1 rounded-b-xl bg-slate-elevation2 p-3">
<h1
Expand Down

0 comments on commit 0696a30

Please sign in to comment.