bugfix: 文章详情按钮

This commit is contained in:
tangly1024
2022-01-12 10:50:03 +08:00
parent e6b59f6013
commit 7ba27a1b41

View File

@@ -59,7 +59,7 @@ const BlogPostCard = ({ post, showSummary }) => {
<div className='article-cover pointer-events-none'>
<Link href={`${BLOG.path}/article/${post.slug}`} passHref>
<a className='hover:bg-opacity-100 hover:scale-105 transform duration-300 rounded-md p-2 text-red-500 cursor-pointer'>
<a className='hover:bg-opacity-100 hover:scale-105 pointer-events-auto transform duration-300 rounded-md p-2 text-red-500 cursor-pointer'>
{locale.COMMON.ARTICLE_DETAIL}
<FontAwesomeIcon className='ml-1' icon={faAngleRight} /></a>
</Link>