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,19 +42,16 @@
</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 v-model="editedItem.name"
class="mr-2" :label="$t('user.link-name')"
v-model="editedItem.name" :rules="[existsRule]"
:label="$t('user.link-name')" validate-on-blur
:rules="[existsRule]" ></v-text-field>
validate-on-blur <v-checkbox
></v-text-field> v-model="editedItem.admin"
<v-checkbox :label="$t('user.admin')"
v-model="editedItem.admin" ></v-checkbox>
:label="$t('user.admin')"
></v-checkbox>
</v-row>
</v-card-text> </v-card-text>
<v-card-actions> <v-card-actions>