I am trying to figure out how to style links in react.
I've seen this post and tried most of it's suggestions.
I have defined a footer styling class as:
.footerlinks {
a:link {color: $Hand3};
font-weight: 300;
font-family: $secondary-font;
a:link {text-decoration:none; background-color:transparent; color: #FAF5F2;};
a:visited {text-decoration:none;background-color:transparent; color:#FAF5F2;};
a:hover {text-decoration:none;background-color:transparent; color:#FAF5F2;};
a:active {text-decoration:none;background-color:transparent; color:#FAF5F2;};
color: $Hand3;
}
Then, I have a footer link as:
<Link to={'/about'} className="footerlinks">About</Link>
The 'color' css field applies, but none of the a tag links work. When you hover on a link it turns blue underline. The css inspector shows the webkit a styling has been misapplied, except for the pointer.
What's the trick to styling a tags in react?