Skip to content

Commit

Permalink
Fix Get started with deploying contracts card buttons layout (#4923)
Browse files Browse the repository at this point in the history
  • Loading branch information
MananTank committed Oct 4, 2024
1 parent c935fbf commit 04f8269
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const DeployOptions = () => {
/>

<button
className="mt-3 flex cursor-pointer items-center gap-2 rounded-lg border border-border bg-muted/50 p-4 hover:bg-muted"
className="mt-3 flex w-full cursor-pointer items-center gap-2 rounded-lg border border-border bg-muted/50 p-4 hover:bg-muted"
type="button"
onClick={() => {
activeTabContent.onClick?.();
Expand Down Expand Up @@ -136,7 +136,9 @@ const DeployOptions = () => {
}`}
/>
<div>
<h4 className="font-semibold text-lg">{activeTabContent.title}</h4>
<h4 className="text-start font-semibold text-lg">
{activeTabContent.title}
</h4>
<p className="text-muted-foreground text-sm">
{activeTabContent.description}
</p>
Expand Down

0 comments on commit 04f8269

Please sign in to comment.