Skip to content

Commit

Permalink
Docs: improve links visibility (#2078)
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash authored Nov 20, 2024
1 parent 0c3f660 commit d5a3499
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,22 @@ html[data-theme='dark'] .prism-code {
}

/* Body link styles */
.markdown a {
text-decoration: underline;
}

.markdown a:hover {
text-decoration: none;
}

html[data-theme='dark'] .markdown a {
color: #ffffff;
text-decoration: underline;
}

html[data-theme='dark'] .markdown a:hover {
color: var(--ifm-link-color);
text-decoration: underline;
text-decoration: none;
}

/* No underline for cards */
Expand Down

0 comments on commit d5a3499

Please sign in to comment.