Skip to content

Commit

Permalink
centering fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sawyer Burnett committed Mar 27, 2024
1 parent c4e4642 commit 0a3b442
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/components/landing/landing-features.tsx
Expand Up @@ -22,13 +22,13 @@ export const LandingFeatures = ({
{list.map(({ alt, body, imgSrc, title, html }, i) => (
<li
key={i}
className="col-span-3 md:col-span-1 flex flex-col items-start"
className="col-span-3 md:col-span-1 flex flex-col items-center text-center"
>
<img src={imgSrc} alt={alt} className="max-h-72" />
<span className="mt-8 text-2xl font-semibold">{title}</span>
<span
dangerouslySetInnerHTML={html}
className="mt-2 text-lg leading-8"
className="mt-2 text-lg leading-8 mx-3"
>
{body}
</span>
Expand Down

0 comments on commit 0a3b442

Please sign in to comment.