Skip to content

Commit

Permalink
fix(ui): light theme navbar link color
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavshn committed Aug 16, 2022
1 parent 03ceb21 commit 7dbb626
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/css/custom.css
Expand Up @@ -314,12 +314,9 @@ html[data-theme='dark'] .discord-icon::before {
}

.dev-portal-link {
--ifm-link-hover-color: #fff;
--ifm-navbar-link-hover-color: #fff;
background-color: var(--docs-color-primary);
border-radius: 4px;
margin-right: 12px;
color: #fff;
transition-property: all;
}

Expand All @@ -329,6 +326,12 @@ html[data-theme='dark'] .discord-icon::before {
margin-bottom: 0.2rem;
}

.dev-portal-signup {
--ifm-link-hover-color: #fff;
--ifm-navbar-link-hover-color: #fff;
color: #fff;
}

.dev-portal-signup:hover {
background-color: var(--ifm-color-primary-darker);
}
Expand Down

0 comments on commit 7dbb626

Please sign in to comment.