diff --git a/test/client/unit/specs/store/actions/user.js b/test/client/unit/specs/store/actions/user.js index 5069e04087..38739d8c45 100644 --- a/test/client/unit/specs/store/actions/user.js +++ b/test/client/unit/specs/store/actions/user.js @@ -1,7 +1,7 @@ import axios from 'axios'; import generateStore from 'client/store'; -describe('tasks actions', () => { +describe('user actions', () => { let store; beforeEach(() => { diff --git a/website/client/app.vue b/website/client/app.vue index 6f05b18552..2d0feaaf89 100644 --- a/website/client/app.vue +++ b/website/client/app.vue @@ -1,19 +1,20 @@ - - diff --git a/website/client/assets/scss/task.scss b/website/client/assets/scss/task.scss index ee64dc34e8..805cdec48d 100644 --- a/website/client/assets/scss/task.scss +++ b/website/client/assets/scss/task.scss @@ -6,51 +6,79 @@ &-worst { background: $maroon-100; - &-control { + &-control-habit { background: darken($maroon-100, 12%); } + + &-control-daily-todo { + background: $maroon-500; + } } &-worse { background: $red-100; - &-control { + &-control-habit { background: darken($red-100, 12%); } + + &-control-daily-todo { + background: $red-500; + } } &-bad { background: $orange-100; - &-control { + &-control-habit { background: darken($orange-100, 12%); } + + &-control-daily-todo { + background: $orange-500; + } } &-neutral { background: $yellow-50; - &-control { + &-control-habit { background: darken($yellow-50, 12%); } + + &-control-daily-todo { + background: $yellow-500; + } } &-good { background: $green-10; - &-control { + &-control-habit { background: darken($green-10, 12%); } + + &-control-daily-todo { + background: $green-500; + } } &-better { background: $blue-50; - &-control { + &-control-habit { background: darken($blue-50, 12%); } + + &-control-daily-todo { + background: $blue-500; + } } &-best { background: $teal-50; - &-control { + &-control-habit { background: darken($teal-50, 12%); } + + &-control-daily-todo { + background: $teal-500; + } } &-reward { diff --git a/website/client/components/appHeader.vue b/website/client/components/appHeader.vue index 21e7f631bf..352ad1086d 100644 --- a/website/client/components/appHeader.vue +++ b/website/client/components/appHeader.vue @@ -1,7 +1,7 @@