Merge pull request #35 from javayhu/related_posts

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:
Somrat
2024-04-02 09:45:12 +06:00
committed by GitHub
+1 -1
View File
@@ -101,7 +101,7 @@ const { title, description, author, categories, image, date, tags } = post.data;
<div class="row justify-center">
{
similarPosts.map((post) => (
<div class="lg:col-4">
<div class="mb-14 lg:col-4">
<BlogCard data={post} />
</div>
))