fix(webui): adjust padding for grids

This commit is contained in:
Gauthier Roebroeck 2020-06-26 17:39:10 +08:00
parent 675b4a16af
commit 02e916898e
4 changed files with 8 additions and 6 deletions

View file

@ -21,7 +21,7 @@
/>
</toolbar-sticky>
<v-container fluid class="pa-6">
<v-container fluid class="px-6">
<v-row>
<v-col cols="4" sm="4" md="auto" lg="auto" xl="auto">
<item-card

View file

@ -117,7 +117,7 @@
@updated="loadCollection(collectionId)"
/>
<v-container fluid class="px-6">
<v-container fluid>
<item-browser
:items.sync="series"

View file

@ -89,7 +89,7 @@
:series.sync="editSeriesSingle"
/>
<v-container fluid class="px-6">
<v-container fluid>
<empty-state
v-if="totalPages === 0"
title="The active filter has no matches"
@ -111,7 +111,6 @@
:items="series"
:selected.sync="selected"
:edit-function="singleEdit"
class="px-4"
/>
</template>
</v-container>

View file

@ -82,7 +82,7 @@
:books.sync="editBookSingle"
/>
<v-container fluid class="px-6">
<v-container fluid>
<v-row>
<v-col cols="4" sm="4" md="auto" lg="auto" xl="auto">
<item-card
@ -186,7 +186,10 @@
:length="totalPages"
/>
<item-browser :items="books" :selected.sync="selected" :edit-function="this.singleEdit" class="px-4"/>
<item-browser :items="books"
:selected.sync="selected"
:edit-function="this.singleEdit"
/>
</template>
</v-container>