From 203b3aaa2c273213fe0529bb146ca2df9fca1b06 Mon Sep 17 00:00:00 2001 From: mtoohey31 Date: Sun, 3 Jan 2021 17:41:18 -0500 Subject: [PATCH] Updated css % opacity values to fix 1% issue The % opacity css values were all being changed to 1% in my builds, which I belive was due to this issue: https://github.com/cssnano/cssnano/issues/892 so I switched them to specify decimal opacity values instead. --- frontend/src/components/Recipe.vue | 2 +- frontend/src/components/RecipeEditor/DetailsView.vue | 2 +- frontend/src/components/RecipeEditor/EditRecipe.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/Recipe.vue b/frontend/src/components/Recipe.vue index 68f18ff6..8e5f8a7c 100644 --- a/frontend/src/components/Recipe.vue +++ b/frontend/src/components/Recipe.vue @@ -152,6 +152,6 @@ export default { margin-top: -10px; } .disabled-card { - opacity: 50%; + opacity: 0.5; } \ No newline at end of file diff --git a/frontend/src/components/RecipeEditor/DetailsView.vue b/frontend/src/components/RecipeEditor/DetailsView.vue index 37205f87..123d9dce 100644 --- a/frontend/src/components/RecipeEditor/DetailsView.vue +++ b/frontend/src/components/RecipeEditor/DetailsView.vue @@ -123,6 +123,6 @@ export default { \ No newline at end of file diff --git a/frontend/src/components/RecipeEditor/EditRecipe.vue b/frontend/src/components/RecipeEditor/EditRecipe.vue index 9a03bd05..83c7a00b 100644 --- a/frontend/src/components/RecipeEditor/EditRecipe.vue +++ b/frontend/src/components/RecipeEditor/EditRecipe.vue @@ -276,7 +276,7 @@ export default {