fix margins

This commit is contained in:
hay-kot 2021-03-30 12:03:03 -08:00
commit d7c6ac780a

View file

@ -22,7 +22,7 @@
</v-toolbar-title> </v-toolbar-title>
<v-spacer> </v-spacer> <v-spacer> </v-spacer>
<v-dialog v-model="dialog" max-width="600px"> <v-dialog v-model="dialog" max-width="500">
<template v-slot:activator="{ on, attrs }"> <template v-slot:activator="{ on, attrs }">
<v-btn small color="success" dark v-bind="attrs" v-on="on"> <v-btn small color="success" dark v-bind="attrs" v-on="on">
{{ $t("user.create-link") }} {{ $t("user.create-link") }}
@ -42,9 +42,7 @@
</v-app-bar> </v-app-bar>
<v-form ref="newUser" @submit.prevent="save"> <v-form ref="newUser" @submit.prevent="save">
<v-card-text> <v-card-text>
<v-row class="justify-center mt-3">
<v-text-field <v-text-field
class="mr-2"
v-model="editedItem.name" v-model="editedItem.name"
:label="$t('user.link-name')" :label="$t('user.link-name')"
:rules="[existsRule]" :rules="[existsRule]"
@ -54,7 +52,6 @@
v-model="editedItem.admin" v-model="editedItem.admin"
:label="$t('user.admin')" :label="$t('user.admin')"
></v-checkbox> ></v-checkbox>
</v-row>
</v-card-text> </v-card-text>
<v-card-actions> <v-card-actions>