Skip to content

Commit

Permalink
Update team colors
Browse files Browse the repository at this point in the history
  • Loading branch information
aidantrabs committed Mar 27, 2024
1 parent 3f0a70f commit 30364f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/sections/Team/Team.section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface DepartmentProps {
const Department: React.FC<DepartmentProps> = ({ title, members }) => {
return (
<div className="department">
<h3 className="mb-6 text-3xl font-bold capitalize md:mb-8">
<h3 className="mb-6 text-3xl text-white drop-shadow-md font-bold capitalize md:mb-8">
{title}
</h3>
<ul className="grid gap-4 sm:grid-cols-2 md:gap-6 lg:grid-cols-3 lg:gap-8">
Expand All @@ -27,10 +27,10 @@ const Department: React.FC<DepartmentProps> = ({ title, members }) => {
/>

<div>
<p className="text-lg font-extrabold lg:text-2xl">
<p className="text-lg text-white drop-shadow-md font-extrabold lg:text-2xl">
{member.name}
</p>
<p className="text-base font-normal lg:text-lg">
<p className="text-base drop-shadow-md text-white font-normal lg:text-lg">
{member.title}
</p>
</div>
Expand Down

0 comments on commit 30364f2

Please sign in to comment.