From d29fca116296f1112949a8a2ad164c246246d971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Wed, 26 Feb 2025 10:59:54 +0100 Subject: [PATCH] Fix contrast in buttons to execute dashboard actions The colors we were using didn't meet the minimum contrast required for UI elements. --- app/assets/stylesheets/dashboard.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/dashboard.scss b/app/assets/stylesheets/dashboard.scss index 7bf1b02f1..4c819c306 100644 --- a/app/assets/stylesheets/dashboard.scss +++ b/app/assets/stylesheets/dashboard.scss @@ -150,12 +150,12 @@ .checked-link { @include has-fa-icon(check, solid); - color: $check; + color: $color-success; } .unchecked-link { @include has-fa-icon(square, regular); - color: $border; + color: $dark-gray; } }