Skip to content

Commit

Permalink
css CIngredientSelector.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
alex9849 committed Oct 4, 2020
1 parent b975cdf commit 7ba6525
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions frontend/src/components/CIngredientSelector.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<q-select
outlined
behavior="menu"
:loading="loading"
:dense="dense"
:value="value"
Expand Down
8 changes: 5 additions & 3 deletions frontend/src/components/CRecipeCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@
{{ recipe.shortDescription }}
</div>
</div>
<div class="row"/>
<div class="row">
<div class="col">
<div class="row" style="margin-top: 10px">
<div
class="col"
v-if="!$q.platform.is.mobile"
>
Ingredients:
<q-chip v-if="index < 4" v-for="(name, index) in uniqueIngredientNames(recipe.recipeIngredients)">
{{ index !== 3?name:'...' }}
Expand Down

0 comments on commit 7ba6525

Please sign in to comment.