Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dappkit
6 changes: 3 additions & 3 deletions src/components/composite/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function Hero({
})}
</Group>
<Group className="grow items-center justify-between gap-xl lg:gap-xl*4">
<Group className={`${compact ? "py-xl md:py-lg*2" : ""} flex-col flex-1`} size="xl">
<Group className={`${compact ? "py-xl md:py-lg*2" : ""} flex-col flex-1`} size="lg">
<Group
className="gap-0 md:gap-lg flex-nowrap w-full items-center"
style={{
Expand All @@ -120,7 +120,7 @@ export default function Hero({
</Group>

{!!description && (
<Text size="lg" look="base">
<Text size="lg" look="soft">
{typeof description === "string"
? description?.split("\n").map((line, index) => (
<React.Fragment key={line}>
Expand Down Expand Up @@ -157,7 +157,7 @@ export default function Hero({

{!!tabs?.length && <Tabs tabs={tabs} look="base" size="lg" />}

<div>{children}</div>
{children}
</>
);
}
Expand Down