From 11f45ef8da3b5308421be193d1af0299f46a28fe 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 68f18ff6102..8e5f8a7ce98 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 37205f87619..123d9dced63 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 9a03bd05e26..83c7a00bf8b 100644 --- a/frontend/src/components/RecipeEditor/EditRecipe.vue +++ b/frontend/src/components/RecipeEditor/EditRecipe.vue @@ -276,7 +276,7 @@ export default {