From 08e6d70e147405c575d61be91bb75d00650ed9b7 Mon Sep 17 00:00:00 2001 From: Vishnu Raghav B Date: Wed, 11 Nov 2020 21:19:06 +0530 Subject: [PATCH] fixed FAB size after search --- app/app.scss | 4 +- app/components/EditRecipe.vue | 74 ++++------------------------ app/components/EnRecipes.vue | 1 - app/components/ViewRecipe.vue | 7 ++- app/worker.service.js | 22 --------- app/workers/ImageProcessor.worker.js | 51 ------------------- 6 files changed, 15 insertions(+), 144 deletions(-) delete mode 100644 app/worker.service.js delete mode 100644 app/workers/ImageProcessor.worker.js diff --git a/app/app.scss b/app/app.scss index d0b86240..5a8edfe1 100644 --- a/app/app.scss +++ b/app/app.scss @@ -491,6 +491,8 @@ RadListView { height: 100%; } MDFloatingActionButton { + width: 56; + height: 56; margin: 16; background: $orange; ripple-color: $fabRipple; @@ -567,7 +569,7 @@ MDButton.closeBtn { MDActivityIndicator { width: 24; height: 24; - margin: 16; + margin: 16 12; } // ----------------------------- // Transitions diff --git a/app/components/EditRecipe.vue b/app/components/EditRecipe.vue index df398821..537a9fb2 100644 --- a/app/components/EditRecipe.vue +++ b/app/components/EditRecipe.vue @@ -41,8 +41,8 @@ v-if="recipeContent.imageSrc" :src="recipeContent.imageSrc" stretch="aspectFill" - decodeWidth="100%" - :decodeHeight="screenWidth" + width="100%" + :height="screenWidth" />