Skip to content

Commit 3469d54

Browse files
committed
fix projects section responsiveness
1 parent 439925c commit 3469d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/menu/body/projects.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function Project({ repo: { name, description, stars, language } }: { repo: RepoD
5151
}
5252

5353
function ProjectsList() {
54-
return <div className="grid grid-cols-2 gap-5">
54+
return <div className="lg:grid lg:grid-cols-2 max-lg:flex max-lg:flex-col gap-5 overflow-y-auto">
5555
{FEATURED_REPOS.map((r, i) => <Project repo={r} key={`featuredrepo-${i}`} />)}
5656
</div>
5757
}

0 commit comments

Comments
 (0)