ui color/theme improvement

This commit is contained in:
Hayden
2021-01-08 19:57:28 -09:00
parent 86c1fd8e9d
commit 7b6fdc7619
12 changed files with 41 additions and 33 deletions

View File

@@ -56,7 +56,7 @@
<v-spacer></v-spacer>
<v-btn color="success" text @click="save"> I accept </v-btn>
<v-btn color="success" text @click="save"> Save </v-btn>
</v-card-actions>
</v-card>
</v-dialog>
@@ -75,7 +75,8 @@ export default {
formKey: 1,
rules: {
required: (v) => !!v || "Key Name Required",
whiteSpace: (v) => !v || v.split(" ").length <= 1 || "No White Space Allowed",
whiteSpace: (v) =>
!v || v.split(" ").length <= 1 || "No White Space Allowed",
},
};
},

View File

@@ -50,7 +50,7 @@
<h2 class="mt-4">Categories</h2>
<v-chip
class="ma-1"
color="primary"
color="accent"
dark
v-for="category in categories"
:key="category"
@@ -63,7 +63,7 @@
<h2 class="mt-4">Tags</h2>
<v-chip
class="ma-1"
color="primary"
color="accent"
dark
v-for="tag in tags"
:key="tag"