From 3637a20db26c98837e4d3b05f60cdedd35dfed5d Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Fri, 1 Mar 2024 10:28:46 -0800 Subject: [PATCH] LuxHyperlink: use the correct syntax for css variables --- src/components/LuxHyperlink.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/LuxHyperlink.vue b/src/components/LuxHyperlink.vue index a6c3ef0..a271d97 100644 --- a/src/components/LuxHyperlink.vue +++ b/src/components/LuxHyperlink.vue @@ -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, @@ -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 {