fix(library): adjust number of items in skeleton loader

Sets the number of skeleton cards to the smallest common multiple of all the breakpoint values, so that every size has full rows of cards.
This commit is contained in:
Julien Machiels 2020-09-24 22:13:28 +02:00 committed by GitHub
parent 8dee120ce4
commit d305e431a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
<v-container>
<v-row v-if="!loaded">
<v-col cols="12" class="card-grid-container">
<skeleton-card v-for="n in 20" :key="n" />
<skeleton-card v-for="n in 24" :key="n" />
</v-col>
</v-row>
<v-row v-if="items.length">