Skip to content

Commit c621ab8

Browse files
committed
fix: reduce card spacings on mobile
1 parent 8a1e110 commit c621ab8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/sections/homepage/Communities.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function CommunitiesSection({ communities }: { communities: Commu
3131
<div className="message-bubble">{t("page.index.communities.subtitle")}</div>
3232
</div>
3333
</div>
34-
<div className="mt-7 grid grid-cols-1 lg:grid-cols-2 gap-x-5 gap-y-0.5 lg:gap-y-5 md:gap-y-5 justify-stretch-items">
34+
<div className="mt-5 md:mt-7 grid grid-cols-1 lg:grid-cols-2 gap-x-5 gap-y-0.5 lg:gap-y-5 md:gap-y-5 justify-stretch-items">
3535
{communities?.map((community) => (
3636
<CommunityCard key={community.id} community={community} />
3737
))}

0 commit comments

Comments
 (0)