optimize: Optimize the issue where there is no spacing set between multiple rows of related posts when there are many related posts.

This commit is contained in:
javayhu
2024-04-02 00:01:55 +08:00
parent 1f50dc48f7
commit f276b92530
+1 -1
View File
@@ -101,7 +101,7 @@ const { title, description, author, categories, image, date, tags } = post.data;
<div class="row justify-center"> <div class="row justify-center">
{ {
similarPosts.map((post) => ( similarPosts.map((post) => (
<div class="lg:col-4"> <div class="mb-14 lg:col-4">
<BlogCard data={post} /> <BlogCard data={post} />
</div> </div>
)) ))