Update skeleton

This commit is contained in:
Douglas Barone 2020-12-04 12:26:00 -04:00
parent 46df0d4cca
commit 4c35835ace

View File

@ -11,7 +11,7 @@
cols="12" cols="12"
md="6" md="6"
> >
<v-card outlined hover class="border-highlight rounded-xl"> <v-card outlined hover class="border-highlight">
<v-list three-line> <v-list three-line>
<v-list-item> <v-list-item>
<v-list-item-avatar size="52px" style="overflow: visible"> <v-list-item-avatar size="52px" style="overflow: visible">
@ -58,10 +58,10 @@
</transition-group> </transition-group>
</div> </div>
<div v-else> <div v-else>
<v-row> <div class="d-flex flex-wrap">
<v-col v-for="i in 8" :key="i" cols="12" md="6"> <v-col v-for="i in 10" :key="i" cols="12" md="6">
<v-card outlined> <v-card outlined class="border-highlight">
<v-list> <v-list three-line>
<v-list-item> <v-list-item>
<v-list-item-avatar> <v-list-item-avatar>
<v-skeleton-loader type="avatar" /> <v-skeleton-loader type="avatar" />
@ -73,7 +73,7 @@
</v-list> </v-list>
</v-card> </v-card>
</v-col> </v-col>
</v-row> </div>
</div> </div>
</template> </template>