From 9e3b6328a4076346916bb6efb863adf90385868b Mon Sep 17 00:00:00 2001 From: Ivan Kljun Date: Thu, 14 Sep 2023 13:03:43 +0200 Subject: [PATCH] Fix comment-counter 'seen' badge color [SCI-9190] --- app/assets/stylesheets/steps/step.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/steps/step.scss b/app/assets/stylesheets/steps/step.scss index d45f38129..40bb493d3 100644 --- a/app/assets/stylesheets/steps/step.scss +++ b/app/assets/stylesheets/steps/step.scss @@ -125,7 +125,7 @@ .comments-counter { align-items: center; - background: var(--sn-science-blue); + background: var(--sn-grey); border-radius: .5rem; color: $color-white; display: flex; @@ -139,7 +139,7 @@ top: 0; &.unseen { - background-color: $brand-complementary; + background-color: var(--sn-science-blue); } }