Skip to content

Commit

Permalink
fix(about.jsx): fix responsive spacing around team members at larger …
Browse files Browse the repository at this point in the history
…viewport widths

Fix responsive spacing around team members at larger viewport widths

CH-104
  • Loading branch information
[Darrick Fauvel] committed Nov 10, 2023
1 parent d50ab83 commit 6b2c4ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ const About = () => {
Meet the YumYumTeam!
</Heading>

<p className="text-right px-10 pb-10 sm:text-center lg:text-right lg:pr-14">
<p className="px-10 text-right sm:text-center lg:text-right lg:pr-14">
These are the exceptional team members that made YumYumYes! possible.
</p>

<div className="grid gap-x-20 md:grid-cols-2 xl:grid-cols-3">
<div className="grid p-10 gap-x-20 md:grid-cols-2 md:gap-16 lg:mt-8 xl:grid-cols-3">
{team.map(({ name, role, summary, image, socials }, index) => (
<article
className="relative group px-10 py-14 first:pt-0 md:pt-0"
className="relative group py-14 md:py-0 first:pt-0 md:pt-0"
key={name}
>
<Heading level="h3" variant="watermelon">
Expand Down

0 comments on commit 6b2c4ee

Please sign in to comment.