Skip to content

Commit

Permalink
fix: positioning of buttons in connectorpath
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Feb 1, 2024
1 parent b26edcd commit 3f9f1f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/ConnectorPath/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function ConnectorPath({ title, icon, description, content, actions }: Props) {
<div className="flex flex-col space-y-4 text-sm mb-8 dark:text-white">
{content}
</div>
<div className="flex gap-4 flex-col sm:flex-row">{actions}</div>
<div className="flex gap-4 flex-col sm:flex-row mt-auto">{actions}</div>
</div>
);
}
Expand Down

0 comments on commit 3f9f1f5

Please sign in to comment.