fix: 下一页修复右侧没有箭头

This commit is contained in:
某亚瑟
2022-10-01 12:23:40 +08:00
committed by GitHub
parent eea28a32a9
commit 223b861b5c

View File

@@ -17,7 +17,7 @@ export default function BlogAround ({ prev, next }) {
</Link>}
{next && <Link href={`/article/${next.slug}`} passHref>
<a className='text-sm flex py-3 text-gray-400 hover:underline cursor-pointer'>{next.title}
<i className='ml-1 my-1 fas -fa-angle-double-right' />
<i className='ml-1 my-1 fas fa-angle-double-right' />
</a>
</Link>}
</section>