From 8718eddcd300b29f1190f39a17190f5b7d19b77d Mon Sep 17 00:00:00 2001 From: Josue Brenes Date: Fri, 20 Mar 2026 10:56:43 -0600 Subject: [PATCH] refactor: adjust spacing and typography in HowItWorks component Modified the HowItWorks component to enhance visual consistency by adjusting spacing and font sizes across various elements. These changes improve the overall layout and readability of the component. --- src/features/how-it-works/HowItWorks.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/features/how-it-works/HowItWorks.tsx b/src/features/how-it-works/HowItWorks.tsx index 765c60b..58c1e91 100644 --- a/src/features/how-it-works/HowItWorks.tsx +++ b/src/features/how-it-works/HowItWorks.tsx @@ -82,7 +82,7 @@ function StepRow({ role="presentation" > {/* Grid: number | icon | title + content area | chevron */} -
+
@@ -178,13 +178,13 @@ function StepRow({ transition: { duration: OPEN_DURATION * 0.75, ease }, }, }} - className="pb-6 pr-0" + className="pb-5 pr-0" >
-

+

{step.description}

-
    +
      {step.bullets.map((b, k) => (
    • Three steps.
      @@ -232,7 +232,7 @@ export default function HowItWorks() { {/* Accordion steps */} -
      +
      {stepsData.map((step, index) => { const triggerId = `${baseId}-trigger-${step.id}`; const contentId = `${baseId}-content-${step.id}`;