移动端w-full
This commit is contained in:
tangly1024
2021-12-23 13:06:22 +08:00
parent e851877c47
commit 1fab66a8de
3 changed files with 6 additions and 6 deletions

View File

@@ -56,7 +56,7 @@ const BlogPostListScroll = ({ posts = [], tags, currentSearch, currentCategory,
return <div id='post-list-wrapper' className='mt-10 md:mt-0' ref={targetRef}>
{/* 文章列表 */}
<div className='flex flex-wrap'>
<div className='flex flex-wrap space-y-8'>
{postsToShow.map(post => (
<BlogPostCard key={post.id} post={post} tags={tags}/>
))}