fix post-width

This commit is contained in:
tangly1024.com
2023-07-18 14:58:03 +08:00
parent e2235aa723
commit d4b13f7b68
3 changed files with 4 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ const BlogPostListScroll = ({ posts = [], currentSearch, showSummary = CONFIG.PO
return <div id='container' ref={targetRef} className='w-full'>
{/* 文章列表 */}
<div className='flex flex-wrap space-y-1 lg:space-y-4 px-2'>
<div className="space-y-6 px-2">
{postsToShow.map(post => (
<BlogPostCard key={post.id} post={post} showSummary={showSummary} siteInfo={siteInfo}/>
))}