Skip to content

Commit

Permalink
Relaxed line heights
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcginnes committed Feb 10, 2024
1 parent d5ba00d commit 767f14c
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function HomePage() {
</div>
</section>
<section className="space-y-6 sm:space-y-10">
<div className="text-body max-w-2xl sm:text-lg print:text-sm">
<div className="text-body max-w-2xl leading-relaxed sm:text-lg print:text-sm">
<p className="my-3">
Since the start of my career in 2007, I have had the privilege to
work with large and small companies all aiming to{" "}
Expand Down Expand Up @@ -485,7 +485,7 @@ function ExperienceBox({
</h2>
</header>
<hr className="border-green-500 print:hidden" />
<div className="flex h-full flex-col gap-3 font-serif text-base">
<div className="flex h-full flex-col gap-3 font-serif text-base leading-relaxed">
{children}
</div>
</article>
Expand All @@ -495,9 +495,6 @@ function ExperienceBox({
type ExperienceHeaderProps = ComponentProps<"h1">
function ExperienceHeader(props: ExperienceHeaderProps) {
return (
<h3
className="text-balance font-sans font-semibold tracking-wide"
{...props}
/>
<h3 className="text-balance font-sans font-bold tracking-wide" {...props} />
)
}

0 comments on commit 767f14c

Please sign in to comment.