Available categories are cropped #40

This commit is contained in:
Daan 2020-09-14 20:13:37 +02:00
parent a9c147f5d9
commit 2117a5c46b
2 changed files with 10 additions and 10 deletions

View file

@ -8,12 +8,12 @@
<v-flex xs12 sm12>
<h3>Available Tags:</h3>
</v-flex>
<v-flex xs12 sm12 class="mt-3">
<v-flex xs12 sm12 class="mt-3 d-flex flex-wrap">
<v-chip
v-for="tag in availableTags"
:key="tag"
small
class="download white--text caption mx-2"
class="download white--text caption mx-2 my-1"
style="font-size: 0.95em !important"
>
{{ tag }}
@ -35,12 +35,12 @@
<v-flex xs12 sm12>
<h3>Available Categories:</h3>
</v-flex>
<v-flex xs12 sm12 class="mt-3">
<v-flex class="d-flex flex-wrap mt-3" xs12 sm12>
<v-chip
v-for="cat in availableCategories"
:key="cat.name"
small
class="upload white--text caption mx-2"
class="upload white--text caption mx-2 my-1"
style="font-size: 0.95em !important"
@click="editCategory(cat)"
@click:close="editCategory(cat)"

View file

@ -10,12 +10,12 @@
<v-flex xs12 sm12>
<h3>Available Tags:</h3>
</v-flex>
<v-flex class="mt-3 d-flex justify-center" xs12 sm12>
<v-flex class="mt-3 d-flex flex-wrap justify-center" xs12 sm12>
<v-chip
v-for="tag in availableTags"
:key="tag"
small
class="download white--text caption mx-2"
class="download white--text caption mx-2 my-1"
style="font-size: 0.95em !important"
@click="addTag(tag)"
>
@ -27,14 +27,14 @@
<v-flex xs12 sm12>
<h3>Current Tags:</h3>
</v-flex>
<v-flex class="mt-3 d-flex justify-center" xs12 sm12>
<v-flex class="mt-3 d-flex flex-wrap justify-center" xs12 sm12>
<div v-if="torrent.tags">
<v-chip
v-for="tag in torrent.tags"
:key="tag"
small
close
class="download white--text caption mx-2"
class="download white--text caption mx-2 my-1"
style="font-size: 0.95em !important"
@click="deleteTag(tag)"
@click:close="deleteTag(tag)"
@ -57,12 +57,12 @@
<v-flex xs12 sm12>
<h3>Available Categories:</h3>
</v-flex>
<v-flex class="mt-3 d-flex justify-center" xs12 sm12>
<v-flex class="mt-3 d-flex flex-wrap justify-center" xs12 sm12>
<v-chip
v-for="cat in availableCategories"
:key="cat.name"
small
class="upload white--text caption mx-2"
class="upload white--text caption mx-2 my-1"
style="font-size: 0.95em !important"
@click="setCategory(cat.name)"
>