From 70e894c26856d1ea2a6832c332662c179d078b75 Mon Sep 17 00:00:00 2001 From: Jai A Date: Tue, 28 Mar 2023 10:43:16 -0700 Subject: [PATCH] fix vars --- lib/components/nav/NavRow.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/components/nav/NavRow.vue b/lib/components/nav/NavRow.vue index a1cf7f73..f002a270 100644 --- a/lib/components/nav/NavRow.vue +++ b/lib/components/nav/NavRow.vue @@ -116,11 +116,11 @@ export default { .nav-link { text-transform: capitalize; font-weight: var(--font-weight-bold); - color: var(--color-text); + color: var(--color-base); position: relative; &:hover { - color: var(--color-text); + color: var(--color-base); &::after { opacity: 0.4; @@ -132,7 +132,7 @@ export default { } &.router-link-exact-active { - color: var(--color-text); + color: var(--color-base); &::after { opacity: 1; @@ -155,7 +155,7 @@ export default { left: 0; width: 3rem; transition: all ease-in-out 0.2s; - border-radius: var(--size-rounded-max); + border-radius: var(--radius-max); background-color: var(--color-brand); @media (prefers-reduced-motion) {