fix: tag spacing

This commit is contained in:
Timothy
2021-02-06 16:54:20 +08:00
parent 8773b3bc6f
commit e19df894b6
4 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ import { kebabCase } from '@/lib/utils'
const Tag = ({ text }) => {
return (
<Link href={`/tags/${kebabCase(text)}`}>
<a className="text-sm font-medium text-blue-500 uppercase hover:text-blue-600 dark:hover:text-blue-400">
<a className="mr-3 text-sm font-medium text-blue-500 uppercase hover:text-blue-600 dark:hover:text-blue-400">
{text.split(' ').join('-')}
</a>
</Link>