mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-14 20:36:55 +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) => {
|
const MarkdownLink = (props: any) => {
|
||||||
return (
|
return (
|
||||||
<Link to={props.href} target="_blank">
|
<Link
|
||||||
|
to={props.href}
|
||||||
|
target="_blank"
|
||||||
|
style={{ color: '#647084', textDecoration: 'underline' }}
|
||||||
|
>
|
||||||
{props.children}
|
{props.children}
|
||||||
</Link>
|
</Link>
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user