Skip to content

Commit

Permalink
docs(website): Fix color for links in banner
Browse files Browse the repository at this point in the history
The default link color matches the background color of the banner which
makes links invisible, so use the same color as normal text for links
but make them bold.

Signed-off-by: Martin Nonnenmacher <[email protected]>
  • Loading branch information
mnonnenmacher committed Jan 10, 2025
1 parent 749d6ff commit 35b668c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions website/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
overflow: hidden;
}

.heroBanner a {
color: var(--ifm-hero-text-color);
font-weight: bold;
}

@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
Expand Down

0 comments on commit 35b668c

Please sign in to comment.