Skip to content

Commit

Permalink
fix: hero name details on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Sep 10, 2024
1 parent 291505b commit 5247b73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/components/HeroName.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ const { class: className, align, color, level, size, ...rest } = Astro.props;
{...rest}
>
<HeroNameHeading align={align} color={color} level={level} size={size} />
<HeroNameDetails align={align} color={color} size={size} />
<HeroNameDetails
align={align}
color={color}
direction="horizontal"
size={size}
/>
</div>

<style>
Expand Down
2 changes: 1 addition & 1 deletion src/components/PrimaryHero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import TicketsButton from "./TicketsButton.astro";
---

<Hero>
<HeroName align="center" color="inverted" level="h1" />
<HeroName align="center" color="inverted" level="h1" size="normal" />
<TicketsButton />

<div class="sub-mentions">
Expand Down

0 comments on commit 5247b73

Please sign in to comment.