From 93b56dc45172b30b74d7ae8cbafb2bc33c1a3b49 Mon Sep 17 00:00:00 2001 From: Jason Wheeler Date: Thu, 23 Feb 2023 17:17:08 -0500 Subject: [PATCH] missed using some variables in scss --- src/styles/client-customizations.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/client-customizations.scss b/src/styles/client-customizations.scss index eb622059..10ce8238 100644 --- a/src/styles/client-customizations.scss +++ b/src/styles/client-customizations.scss @@ -25,11 +25,11 @@ $limu-button-color: #A9E3E9; .btn { &.btn-override[aria-disabled="false"]{ &.btn-primary { - background: #A9E3E9 !important; + background: $limu-button-color !important; color: $limu-button-text-color !important; } &:focus-visible { - background: #A9E3E9 !important; + background: $limu-button-color !important; color: $limu-button-text-color !important; } }