diff --git a/src/shared/components/challenge-detail/Specification/styles.scss b/src/shared/components/challenge-detail/Specification/styles.scss index 8d51cb67cb..be5380adf9 100644 --- a/src/shared/components/challenge-detail/Specification/styles.scss +++ b/src/shared/components/challenge-detail/Specification/styles.scss @@ -1,4 +1,5 @@ @import "~styles/tc-styles"; +$tc-link-normal: #0b71e6; $tc-link-visited: #0c4e98; @mixin linkStyle { @@ -13,12 +14,23 @@ $tc-link-visited: #0c4e98; a:active { text-decoration: underline; - color: $tc-dark-blue-70; } a:visited { color: $tc-link-visited; } + + article > a { + color: $tc-link-normal; + } + + article > a:active { + color: $tc-dark-blue-70; + } + + article > a:visited { + color: $tc-link-visited; + } } .challenge-details-view { diff --git a/src/styles/_reset.scss b/src/styles/_reset.scss index 429473e327..1bcd6a67ef 100644 --- a/src/styles/_reset.scss +++ b/src/styles/_reset.scss @@ -169,3 +169,4 @@ a { color: inherit; } } +