Skip to content

Commit 806c78e

Browse files
committed
Unify line heights
1 parent bf48484 commit 806c78e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/components/index-page/how-it-works/how-it-works-list-item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function HowItWorksListItem({
1313
{text}
1414
{icon}
1515
</div>
16-
<div className="mt-px flex-1 bg-neu-0 text-sm md:pl-2 md:pt-2 max-md:[&_code>span]:!pl-0 [&_pre]:border-none [&_pre]:ring-0">
16+
<div className="mt-px flex-1 bg-neu-0 text-sm/[21px] md:pl-2 md:pt-2 max-md:[&_code>span]:!pl-0 [&_pre]:border-none [&_pre]:ring-0">
1717
{code}
1818
</div>
1919
</li>

src/components/index-page/how-it-works/play-button.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ export function PlayButton({
88
return (
99
<Button
1010
variant="tertiary"
11-
className={clsx("ml-auto h-min !p-1", className)}
11+
className={clsx(
12+
"ml-auto h-min !p-0.5 !text-neu-800 before:absolute before:-inset-3 hover:!text-neu-900",
13+
className,
14+
)}
1215
onClick={props.onClick}
1316
>
1417
<svg fill="currentColor" viewBox="0 0 24 24" className="size-4">

0 commit comments

Comments
 (0)