Skip to content

Commit

Permalink
fixed the root of the overflow, the team list responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
kobebuckley committed Jan 24, 2024
1 parent 95a6ebb commit 479ece1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const TeamMember = ({ src, name }) => {
<AiOutlineGithub fontSize="2rem" />
<h2 className="pl-2 py-8 text-md xl:text-xl">Contributors:</h2>{" "}
</div>
<ul className="grid grid-cols-6 gap-4 pl-4">
<ul className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-6 gap-4 pl-4">
{uniqueContributorsArray.map((contributor, index) => (
<li key={index}>
<a target="_blank" href={contributor.url}>
Expand Down

0 comments on commit 479ece1

Please sign in to comment.