Skip to content

Commit

Permalink
fix(styling): replace hard-coded colors with CSS vars (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiazom committed Sep 24, 2024
1 parent f3b6e47 commit cb74578
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/buttons/button.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
border: 1px solid var(--primary-dark);

&:hover {
background: #085156;
background: var(--primary-darker);
}

&:active {
background: #053235;
background: var(--primary-darker);
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/linkButton/linkButton.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@
border: 1px solid var(--primary-dark);

&:hover {
background: #085156;
background: var(--primary-darker);
}

&:active {
background: #053235;
background: var(--primary-darker);
}

&::after {
Expand Down

0 comments on commit cb74578

Please sign in to comment.