fix alignment on add to list dialog

This commit is contained in:
Michael Genson 2025-07-11 20:12:06 +00:00
commit 2bb29f2496

View file

@ -130,19 +130,23 @@
.ingredients[i] .ingredients[i]
.checked" .checked"
> >
<v-checkbox <v-container class="pa-0 ma-0">
hide-details <v-row no-gutters>
:model-value="ingredientData.checked" <v-checkbox
class="pt-0 my-auto py-auto" hide-details
color="secondary" :model-value="ingredientData.checked"
density="compact" class="pt-0 my-auto py-auto mr-2"
/> color="secondary"
<div :key="ingredientData.ingredient.quantity"> density="compact"
<RecipeIngredientListItem />
:ingredient="ingredientData.ingredient" <div :key="ingredientData.ingredient.quantity" class="pa-auto my-auto">
:scale="recipeSection.recipeScale" <RecipeIngredientListItem
/> :ingredient="ingredientData.ingredient"
</div> :scale="recipeSection.recipeScale"
/>
</div>
</v-row>
</v-container>
</v-list-item> </v-list-item>
</div> </div>
</div> </div>