Skip to content

Commit 33f138b

Browse files
authored
Merge pull request #54 from CodeWithAloha/53-fix-contributors-layout-on-mobile
fixed the root of the overflow, the team list responsiveness
2 parents 95a6ebb + 479ece1 commit 33f138b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Team.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const TeamMember = ({ src, name }) => {
4949
<AiOutlineGithub fontSize="2rem" />
5050
<h2 className="pl-2 py-8 text-md xl:text-xl">Contributors:</h2>{" "}
5151
</div>
52-
<ul className="grid grid-cols-6 gap-4 pl-4">
52+
<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">
5353
{uniqueContributorsArray.map((contributor, index) => (
5454
<li key={index}>
5555
<a target="_blank" href={contributor.url}>

0 commit comments

Comments
 (0)