Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the contrast of links and ensure we underline those links #2319

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
--color-text-light: #595959;
}

--color-link: #0098d4;
--color-link: #00719d;

--page-header-height: 15rem;

Expand Down Expand Up @@ -59,6 +59,10 @@ main {

a {
color: var(--color-link);
text-decoration: underline;
}

nav a {
text-decoration: none;
}

Expand Down Expand Up @@ -117,7 +121,6 @@ ol:last-child {

a {
color: #999;
text-decoration: none;
margin-inline: .8rem;
}

Expand Down Expand Up @@ -354,6 +357,8 @@ a>code {
border-radius: 1000px;
padding: .6em 2em;

text-decoration: none;

&.inverted {
border: 2px solid #fff;
background-color: #fff;
Expand Down