diff --git a/frontend/src/components/Recipe/RecipeTimeCard.vue b/frontend/src/components/Recipe/RecipeTimeCard.vue index 64596fae3..06943b9ea 100644 --- a/frontend/src/components/Recipe/RecipeTimeCard.vue +++ b/frontend/src/components/Recipe/RecipeTimeCard.vue @@ -1,50 +1,58 @@ @@ -59,7 +67,7 @@ export default { timeLength() { let times = []; let timeArray = [this.totalTime, this.prepTime, this.performTime]; - timeArray.forEach((element) => { + timeArray.forEach(element => { if (element) { times.push(element); } @@ -83,10 +91,10 @@ export default { }, timeCardWidth() { let timeArray = [this.totalTime, this.prepTime, this.performTime]; - let width = 120; - timeArray.forEach((element) => { + let width = 80; + timeArray.forEach(element => { if (element) { - width += 70; + width += 95; } });