Skip to content

Commit 0b67dc7

Browse files
committed
fix: modify blog post list selected by category
1 parent 902b3c1 commit 0b67dc7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/blog/categories/[category].tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ const Category: NextPage<InferGetStaticPropsType<typeof getStaticProps>> = ({ ca
2828
<Head>
2929
<title>{category}</title>
3030
</Head>
31-
<section className="divide-y my-16">
31+
<section className="my-16">
3232
<PageTitle name={`# ${category}`} />
33+
<hr className="mt-4" />
3334
<BlogPostList posts={posts} />
3435
</section>
3536
</>

0 commit comments

Comments
 (0)