change import from url design

This commit is contained in:
Hayden 2021-02-21 16:35:53 -09:00
commit 688b9fc195

View file

@ -2,9 +2,16 @@
<div class="text-center"> <div class="text-center">
<v-dialog v-model="addRecipe" width="650" @click:outside="reset"> <v-dialog v-model="addRecipe" width="650" @click:outside="reset">
<v-card :loading="processing"> <v-card :loading="processing">
<v-card-title class="headline" <v-app-bar dark color="primary mb-2">
>{{ $t("new-recipe.from-url") }} <v-icon large left>
</v-card-title> mdi-link
</v-icon>
<v-toolbar-title class="headline">
{{ $t("new-recipe.from-url") }}
</v-toolbar-title>
<v-spacer></v-spacer>
</v-app-bar>
<v-card-text> <v-card-text>
<v-form ref="urlForm"> <v-form ref="urlForm">
@ -14,7 +21,10 @@
required required
validate-on-blur validate-on-blur
autofocus autofocus
class="mt-1"
:rules="[isValidWebUrl]" :rules="[isValidWebUrl]"
:hint="$t('new-recipe.url-form-hint')"
persistent-hint
></v-text-field> ></v-text-field>
</v-form> </v-form>