mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-12 19:36:35 +00:00
feat: add style to markdown link
This commit is contained in:
parent
4dfff15c89
commit
ecd0cc2653
@ -2,7 +2,11 @@ import { Link } from 'react-router-dom'
|
||||
|
||||
const MarkdownLink = (props: any) => {
|
||||
return (
|
||||
<Link to={props.href} target="_blank">
|
||||
<Link
|
||||
to={props.href}
|
||||
target="_blank"
|
||||
style={{ color: '#647084', textDecoration: 'underline' }}
|
||||
>
|
||||
{props.children}
|
||||
</Link>
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user