Skip to content

Commit

Permalink
LuxHyperlink: use the correct syntax for css variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sandbergja committed Mar 1, 2024
1 parent e193e8a commit 3637a20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/LuxHyperlink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ export default {
@import "../assets/styles/spacing.scss";
.lux-link {
color: --var(color-bleu-de-france-dark);
font-family: --var(font-family-text);
color: var(--color-bleu-de-france-dark);
font-family: var(--font-family-text);
text-decoration: none;
&:visited {
color: --var(color-bleu-de-france-dark);
color: var(--color-bleu-de-france-dark);
}
&:focus,
Expand Down Expand Up @@ -101,7 +101,7 @@ export default {
&.outline {
background: transparent;
color: --var(color-bleu-de-france-dark);
color: var(--color-bleu-de-france-dark);
border: 2px solid var(--color-bleu-de-france);
&:hover,
&:focus {
Expand Down

0 comments on commit 3637a20

Please sign in to comment.