Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 63d6b7d

Browse files
fix(website): make the appearance of links on the page consistent. (#376) (#382)
1 parent f89e126 commit 63d6b7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/website/src/components/ExternalLink.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const ExternalLink = ({ children, withUnderline = true, ...chakraProps }:
1010
const underlineProps = withUnderline ? { textDecoration: 'underline', textUnderlineOffset: '2px' } : {};
1111

1212
return (
13-
<Link {...externalLinkBaseProps} {...chakraProps} {...underlineProps}>
13+
<Link color="blue.700" {...externalLinkBaseProps} {...chakraProps} {...underlineProps}>
1414
{children}
1515
</Link>
1616
);

packages/website/src/components/InternalLink.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const InternalLink = ({
2323

2424
return (
2525
<NextLink passHref href={href} as={as} replace={replace} scroll={scroll} shallow={shallow} prefetch={prefetch}>
26-
<Link {...chakraProps} {...underlineProps}>
26+
<Link color="blue.700" {...chakraProps} {...underlineProps}>
2727
{children}
2828
</Link>
2929
</NextLink>

0 commit comments

Comments
 (0)