Skip to content

Commit

Permalink
contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
tubone24 committed Apr 24, 2022
1 parent c45ee7e commit f4dfefb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/components/Card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ const Card = ({
<h4 className="title">{title}</h4>
</Link>
<p>{description}</p>
<Link to={withPrefix(url)}>....Read more....</Link>
<Link to={withPrefix(url)} aria-hidden="true">
....Read more....
</Link>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/templates/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const NavLink = ({
}

return (
<Link to={`${url}`} title={text}>
<NavLinkText color="#66ccff" text={text} />
<Link to={`${url}`}>
<NavLinkText color="#5252FF" text={text} />
</Link>
);
};
Expand Down

0 comments on commit f4dfefb

Please sign in to comment.