Skip to content

Commit

Permalink
-minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ChinmayShrivastava committed Mar 17, 2024
1 parent 3215ae5 commit 05771cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/feature/VerticalFeatureRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const VerticalFeatureRow = (props: IVerticalFeatureRowProps) => {
return (
<div className={verticalFeatureClass}>
<div className="align-start flex w-full flex-col items-start justify-start px-6 py-16 text-center sm:w-1/2 sm:py-0">
<h3 className="px-4 text-left text-2xl text-gray-900">{props.title}</h3>
<div className="mt-2 px-4 text-left text-xl leading-9">
<h3 className="px-4 text-left text-xl text-gray-900 sm:text-2xl">{props.title}</h3>
<div className="mt-2 px-4 text-left text-lg leading-9 sm:text-xl">
{props.description}
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/hero/HeroOneButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ type IHeroOneButtonProps = {

const HeroOneButton = (props: IHeroOneButtonProps) => (
<header className="text-center sm:text-left">
<h1 className="whitespace-pre-line text-[2.5em] leading-hero text-gray-900 sm:text-[4em]">
<h1 className="whitespace-pre-line text-[2em] text-gray-900 sm:text-[4em] sm:leading-hero">
{props.title}
</h1>
<div className="mb-16 mt-4 text-2xl">{props.description}</div>
<div className="mb-16 mt-4 text-xl sm:text-2xl">{props.description}</div>
{props.button}
</header>
);
Expand Down

0 comments on commit 05771cb

Please sign in to comment.