Skip to content

Commit

Permalink
update button color
Browse files Browse the repository at this point in the history
  • Loading branch information
john-rock committed Oct 27, 2023
1 parent 1e69534 commit 9e5b6ad
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion website/src/components/quickstartTOC/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ html[data-theme="dark"] .tocList .active span {

.stepWrapper .buttonContainer a:hover {
background: var(--color-light-teal);
color: var(--color-white);
}

html[data-theme="dark"] .stepWrapper .buttonContainer a:hover {
color: var(--color-white) !important;
}

Expand All @@ -104,8 +108,12 @@ html[data-theme="dark"] .tocList .active span {
margin-left: .4rem;
}

.stepWrapper[data-step="1"] .nextButton {
.stepWrapper[data-step="1"] a.nextButton {
background: var(--color-light-teal);
color: var(--color-white);
}

html[data-theme="dark"] .stepWrapper[data-step="1"] a.nextButton {
color: var(--color-white) !important;
}

Expand Down

0 comments on commit 9e5b6ad

Please sign in to comment.