missed using some variables in scss

This commit is contained in:
Jason Wheeler 2023-02-23 17:17:08 -05:00
parent 7855aa2e30
commit 93b56dc451

View file

@ -25,11 +25,11 @@ $limu-button-color: #A9E3E9;
.btn { .btn {
&.btn-override[aria-disabled="false"]{ &.btn-override[aria-disabled="false"]{
&.btn-primary { &.btn-primary {
background: #A9E3E9 !important; background: $limu-button-color !important;
color: $limu-button-text-color !important; color: $limu-button-text-color !important;
} }
&:focus-visible { &:focus-visible {
background: #A9E3E9 !important; background: $limu-button-color !important;
color: $limu-button-text-color !important; color: $limu-button-text-color !important;
} }
} }