auto grow size

This commit is contained in:
hay-kot 2021-02-09 17:28:13 -09:00
commit e4fc908218

View file

@ -41,21 +41,23 @@
> >
</v-text-field> </v-text-field>
<v-textarea <v-textarea
height="100" auto-grow
min-height="100"
:label="$t('recipe.description')" :label="$t('recipe.description')"
v-model="value.description" v-model="value.description"
> >
</v-textarea> </v-textarea>
<div class="my-2"></div> <div class="my-2"></div>
<v-row dense disabled> <v-row dense disabled>
<v-col sm="5"> <v-col sm="4">
<v-text-field <v-text-field
:label="$t('recipe.servings')" :label="$t('recipe.servings')"
v-model="value.recipeYield" v-model="value.recipeYield"
class="rounded-sm"
> >
</v-text-field> </v-text-field>
</v-col> </v-col>
<v-col></v-col> <v-spacer></v-spacer>
<v-rating <v-rating
class="mr-2 align-end" class="mr-2 align-end"
color="secondary darken-1" color="secondary darken-1"
@ -186,6 +188,7 @@
</v-row> </v-row>
<v-textarea <v-textarea
auto-grow
:label="$t('recipe.note')" :label="$t('recipe.note')"
v-model="value.notes[index]['text']" v-model="value.notes[index]['text']"
> >
@ -225,6 +228,7 @@
> >
<v-card-text> <v-card-text>
<v-textarea <v-textarea
auto-grow
dense dense
v-model="value.recipeInstructions[index]['text']" v-model="value.recipeInstructions[index]['text']"
:key="generateKey('instructions', index)" :key="generateKey('instructions', index)"