Skip to content

Commit

Permalink
Add dark mode to button in Hire us section
Browse files Browse the repository at this point in the history
  • Loading branch information
patrycjakalinska committed May 14, 2024
1 parent 82b5966 commit 9f91dde
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/src/components/HireUsSection/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,19 @@
.buttonNavyBorderStyling {
border: 1px solid var(--swm-navy-light-100);
}

[data-theme='dark'] .buttonNavyStyling {
background-color: var(--swm-landing-button-purple);
}

[data-theme='dark'] .buttonNavyBorderStyling {
border: 1px solid var(--swm-landing-button-purple);
}
[data-theme='dark'] .buttonNavyStyling:hover {
background-color: transparent;
color: var(--swm-landing-button-purple);
}

[data-theme='dark'] .buttonNavyStyling:hover svg {
stroke: var(--swm-landing-button-purple);
}

0 comments on commit 9f91dde

Please sign in to comment.