Skip to content

Commit

Permalink
Merge pull request #145 from bearhack-ucr/NovaSagittarii/team-alignment
Browse files Browse the repository at this point in the history
fix team alignment again
  • Loading branch information
rfairooz authored Apr 16, 2024
2 parents 27be733 + 742740d commit 8f15aa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ const Team = () => {
))}
</div>
<div className="text-2xl lg:text-3xl font-header mt-8 mb-4">Leads</div>
<div className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 xl:grid-cols-6 gap-4 px-4 md:gap-6 md:px-6 lg:gap-8 lg:px-8">
<div className="flex w-3/4 flex-wrap justify-center gap-4 sm:px-4 md:gap-8">
{members.map(({ name, position, image }, index) => (
<Member name={name} position={position} image={image} key={index} />
))}
</div>
<div className="text-2xl lg:text-3xl font-header mt-8 mb-4">
Committees
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="flex w-3/4 flex-wrap justify-center gap-4 sm:px-4 md:gap-6 md:px-6 lg:gap-8 lg:px-8">
{Object.entries(committee).map(([key, values], index) => (
<div
className="text-white font-paragraph text-center flex flex-col items-center"
Expand Down

0 comments on commit 8f15aa7

Please sign in to comment.