feat(website): add implements for class (#8388)

Co-authored-by: Noel <buechler.noel@outlook.com>
This commit is contained in:
Parbez
2022-07-29 14:49:32 +05:30
committed by GitHub
parent d03cf6176c
commit 52c2818b25
3 changed files with 28 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ export function HyperlinkedText({ tokens }: HyperlinkedTextProps) {
if (token.path) {
return (
<Link key={token.text} href={token.path}>
<a className="text-blue-500 dark:text-blue-300">{token.text}</a>
<a className="text-blue-500 dark:text-blue-300 no-underline">{token.text}</a>
</Link>
);
}