Reputation: 31
im use tailwind css in next js.
<a href="#" className="active:bg-none hover:bg-transparent focus:bg-transparent visited:bg-transparent">link</a>
and even in css i've added this
a:focus, a:active, a:visited {border: none; outline: none; text-decoration: none; background-color: transparent; background: transparent; }
Upvotes: 2
Views: 1833
Reputation: 3089
Add the following css rule:
a {
color: rgb(0, 102, 204);
}
Upvotes: 4