Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit adf1609

Browse files
committed
adjust grid for archives
1 parent 7df6164 commit adf1609

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pages/blog/[[...slug]].js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default function BlogPost({post, archive, posts, pagination}) {
4343
{!posts || !posts.length ? (
4444
<p>No posts found.</p>
4545
) : (
46-
<div className="w-1/3 grid grid-cols-1 gap-12">
46+
<div className="grid lg:grid-cols-2 gap-12">
4747
{posts.map((post, index) => (
4848
<Card
4949
key={index}

pages/team/[[...slug]].js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function Team({post, archive, posts, pagination}) {
4242
{!posts || !posts.length ? (
4343
<p>No posts found.</p>
4444
) : (
45-
<div className="w-1/3 grid grid-cols-1 gap-12">
45+
<div className="grid lg:grid-cols-2 gap-12">
4646
{posts.map((post, index) => (
4747
<Card
4848
key={index}

0 commit comments

Comments
 (0)