Fix contrast in buttons to execute dashboard actions

The colors we were using didn't meet the minimum contrast required for
UI elements.
This commit is contained in:
Javi Martín
2025-02-26 10:59:54 +01:00
parent d8550388a6
commit d29fca1162

View File

@@ -150,12 +150,12 @@
.checked-link { .checked-link {
@include has-fa-icon(check, solid); @include has-fa-icon(check, solid);
color: $check; color: $color-success;
} }
.unchecked-link { .unchecked-link {
@include has-fa-icon(square, regular); @include has-fa-icon(square, regular);
color: $border; color: $dark-gray;
} }
} }