Merge pull request #1579 from Femoon/fix/homepage_animation

Fix: 修复 Medium 主题首页文章列表无封面图片时动画异常
This commit is contained in:
tangly1024
2023-10-29 10:05:11 +08:00
committed by GitHub

View File

@@ -31,7 +31,7 @@ const BlogPostCard = ({ post, showSummary }) => {
}>
<div>
{CONFIG.POST_LIST_COVER && <div className='w-full max-h-96 object-cover overflow-hidden mb-2'>
<LazyImage src={post.pageCoverThumbnail} className='w-full max-h-96 object-cover hover:scale-125 duration-150' />
<LazyImage src={post.pageCoverThumbnail} style={post.pageCoverThumbnail ? {} : { height: '0px' }} className='w-full max-h-96 object-cover hover:scale-125 duration-150' />
</div>}
{post.title}
</div>