Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/website/src/components/ExternalLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const ExternalLink = ({ children, withUnderline = true, ...chakraProps }:
const underlineProps = withUnderline ? { textDecoration: 'underline', textUnderlineOffset: '2px' } : {};

return (
<Link {...externalLinkBaseProps} {...chakraProps} {...underlineProps}>
<Link color="blue.700" {...externalLinkBaseProps} {...chakraProps} {...underlineProps}>
{children}
</Link>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/website/src/components/InternalLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const InternalLink = ({

return (
<NextLink passHref href={href} as={as} replace={replace} scroll={scroll} shallow={shallow} prefetch={prefetch}>
<Link {...chakraProps} {...underlineProps}>
<Link color="blue.700" {...chakraProps} {...underlineProps}>
{children}
</Link>
</NextLink>
Expand Down