fix(html): set default link color for safari (#11353)
This commit is contained in:
parent
6f932fcb4a
commit
5751a1255b
|
|
@ -49,7 +49,7 @@ export const Link: React.FunctionComponent<{
|
||||||
title?: string,
|
title?: string,
|
||||||
children: any,
|
children: any,
|
||||||
}> = ({ href, className, children, title }) => {
|
}> = ({ href, className, children, title }) => {
|
||||||
return <a style={{ textDecoration: 'none', color: 'initial' }} className={`${className || ''}`} href={href} title={title}>{children}</a>;
|
return <a style={{ textDecoration: 'none', color: 'var(--color-fg-default)' }} className={`${className || ''}`} href={href} title={title}>{children}</a>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ProjectLink: React.FunctionComponent<{
|
export const ProjectLink: React.FunctionComponent<{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue