Skip to content

Commit

Permalink
chore: fix Button color on dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed Mar 25, 2024
1 parent bf4f527 commit f4c11b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/core/components/Button/Button.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,20 @@
}

.Button--secondary {
border: 1px solid var(--puck-color-grey-01);
color: var(--puck-color-black);
border: 1px solid currentColor;
color: currentColor;
}

@media (hover: hover) and (pointer: fine) {
.Button--secondary:hover {
background-color: var(--puck-color-azure-12);
color: var(--puck-color-black);
}
}

.Button--secondary:active {
background-color: var(--puck-color-azure-11);
color: var(--puck-color-black);
}

.Button--flush {
Expand Down

0 comments on commit f4c11b3

Please sign in to comment.