Merge pull request #379 from mouyase/main

fix: 下一页修复右侧没有箭头
This commit is contained in:
tangly1024
2022-10-01 16:04:51 +08:00
committed by GitHub

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>