博客卡片调整;
顶部tabBar调整
This commit is contained in:
tangly1024
2021-11-15 13:32:52 +08:00
parent dac545e08e
commit 611f7a29ae
4 changed files with 51 additions and 38 deletions

View File

@@ -56,7 +56,7 @@ const BlogPostListPage = ({ page = 1, posts = [], tags }) => {
<div>
{/* 文章列表 */}
<div className='grid 3xl:grid-cols-4 2xl:grid-cols-3 md:grid-cols-2 grid-cols-1 gap-5'>
<div className='flex flex-wrap'>
{postsToShow.map(post => (
<BlogPostCard key={post.id} post={post} tags={tags} />
))}