diff --git a/src/components/StepList.astro b/src/components/StepList.astro index 033eb8d..9d7a3f7 100644 --- a/src/components/StepList.astro +++ b/src/components/StepList.astro @@ -11,7 +11,7 @@ const { steps, currentStep, title } = Astro.props as { ---
-

{title}

+
{title}
    { steps.map((step, i) => ( @@ -35,9 +35,10 @@ const { steps, currentStep, title } = Astro.props as { max-width: 400px; /* optional, keeps it compact */ } - .step-box h2 { - font-size: 1em; - padding-bottom: 1em; + .step-box .step-title { + font-size: 1.2em; + padding-bottom: 0.6em; + font-weight: 500; } .steps { diff --git a/src/components/StepListReceive.astro b/src/components/StepListReceive.astro index 9169c19..d26b677 100644 --- a/src/components/StepListReceive.astro +++ b/src/components/StepListReceive.astro @@ -1,7 +1,7 @@ --- import StepList from "./StepList.astro"; -const { currentStep, title } = Astro.props; +const { currentStep } = Astro.props; ---