From fd0b8ac4c06a46c5a40db5d976c634df133c7fdb Mon Sep 17 00:00:00 2001 From: Vishnu Raghav B Date: Mon, 16 Nov 2020 02:43:06 +0530 Subject: [PATCH] added ui-calendar --- README.md | 2 +- app/app.scss | 10 +++-- app/components/App.vue | 33 +++++++++++++---- app/components/EditRecipe.vue | 24 +++++++++--- app/components/EnRecipes.vue | 2 +- app/components/MealPlanner.vue | 68 ++++++++++++++++++++++++++++++++++ app/components/Settings.vue | 13 ++++--- app/components/ViewRecipe.vue | 31 ++++++++-------- app/main.js | 3 ++ app/store.js | 1 + package-lock.json | 14 ++++--- package.json | 2 +- 12 files changed, 158 insertions(+), 45 deletions(-) create mode 100644 app/components/MealPlanner.vue diff --git a/README.md b/README.md index 60778e77..3621459d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ EnRecipes is an easy to use, privacy-friendly digital cookbook that lets you cre - Add photo, notes and references to your recipes - Organise your recipes by category - Search for your recipes based on the title -- Mark recipes as favorites and add them to your Try later list +- Mark recipes as favorites and add them to your Try Later list - Scale your recipe ingredients to serve more or less people - Get notified of the last time you tried a recipe - Share your recipe to anyone by any means as a nicely formatted message. You can share the recipe photo too. diff --git a/app/app.scss b/app/app.scss index 8dc44d12..1c0dec23 100644 --- a/app/app.scss +++ b/app/app.scss @@ -61,7 +61,8 @@ Page, .referenceItem, .recipeText, .overviewItem, - .recipeItem { + .recipeItem, + TextField.combinationToken { background: white; } @@ -124,7 +125,8 @@ Page, .referenceItem, .recipeText, .overviewItem, - .recipeItem { + .recipeItem, + TextField.combinationToken { background: $gray8; } .sd-item, @@ -483,6 +485,9 @@ RadListView { margin: 0; line-height: 6; } + .linkIcon { + padding: 0 16 0 0; + } } .recipeText { font-size: 16; @@ -526,7 +531,6 @@ MDButton.closeBtn { } TextField.combinationToken { border-width: 0; - background: white; } // ----------------------------- // DIALOGS diff --git a/app/components/App.vue b/app/components/App.vue index 58b498dd..de0edc22 100644 --- a/app/components/App.vue +++ b/app/components/App.vue @@ -32,7 +32,24 @@