Greens
This commit is contained in:
parent
8dcd445df6
commit
f62c8a0d55
5 changed files with 8 additions and 8 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue