colors of bars in results

This commit is contained in:
Tykayn 2022-02-10 12:22:16 +01:00 committed by tykayn
parent e9850bca2d
commit 6ce5f6cb37
1 changed files with 7 additions and 7 deletions

View File

@ -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;
}
}