From 6ce5f6cb37ffc06ddb6581e43bc9fa77846a669e Mon Sep 17 00:00:00 2001 From: Tykayn Date: Thu, 10 Feb 2022 12:22:16 +0100 Subject: [PATCH] colors of bars in results --- .../poll-results-dinum.component.scss | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/features/consultation/poll-results-dinum/poll-results-dinum.component.scss b/src/app/features/consultation/poll-results-dinum/poll-results-dinum.component.scss index 7d4a56b3..8980e0d4 100644 --- a/src/app/features/consultation/poll-results-dinum/poll-results-dinum.component.scss +++ b/src/app/features/consultation/poll-results-dinum/poll-results-dinum.component.scss @@ -21,7 +21,7 @@ border-bottom: 1px solid #e2e0fa; } .max_score { - color: green; + color: #128149; } } .date-label { @@ -47,18 +47,18 @@ } div { &.has-background-yes { - border: green; - background: yellowgreen; + border: #128149; + background: #ecfff5; @extend .bar-div; } &.has-background-maybe { - border: orange; - background: yellow; + border: #86671b; + background: #fffaec; @extend .bar-div; } &.has-background-no { - border: red; - background: pink; + border: #d51b38; + background: #ffecee; @extend .bar-div; } }