Skip to content

Commit

Permalink
Prettier write
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobellerbrock committed Oct 21, 2024
1 parent 445ccfb commit f32c22f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/landing/Team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const CarouselDefault = () => {
<CarouselItem
key={index}
className={
"min-h-[450px] min-w-[450px] basis-1/4 xl:basis-1/6 pl-1"
"min-h-[450px] min-w-[450px] basis-1/4 pl-1 xl:basis-1/6"
}
>
<TeamCard person={p} />
Expand Down
3 changes: 2 additions & 1 deletion apps/web/src/components/landing/TeamCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ export default function TeamCard({ person }: TeamCardProps) {
textColor = "white";
break;
case "Outreach":
borderColor = "linear-gradient(to bottom right, #161D6F, #0B2F9F, #161D6F)";
borderColor =
"linear-gradient(to bottom right, #161D6F, #0B2F9F, #161D6F)";
mainColor = "#98DED9";
glowColor = "#C7FFD8";
textColor = "white";
Expand Down

0 comments on commit f32c22f

Please sign in to comment.