This commit is contained in:
Dane Everitt 2019-02-09 14:36:39 -08:00
parent 8dcd445df6
commit f62c8a0d55
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
5 changed files with 8 additions and 8 deletions

View file

@ -9,7 +9,7 @@ export default Vue.component('progress-bar', {
computed: {
backgroundColor: function () {
if (this.percent < 70) {
return "bg-green-dark";
return "bg-green-600";
} else if (this.percent >= 70 && this.percent < 90) {
return "bg-yellow-dark";
} else {
@ -18,7 +18,7 @@ export default Vue.component('progress-bar', {
},
borderColor: function () {
if (this.percent < 70) {
return "border-green-dark";
return "border-green-600";
} else if (this.percent >= 70 && this.percent < 90) {
return "border-yellow-dark";
} else {