Version 1.1 #43

Merged
dbroqua merged 25 commits from develop into master 2022-04-09 00:42:25 +02:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit b05bed9a00 - Show all commits

View File

@ -14,6 +14,12 @@
@include respond-to("medium-up") {
border-left: 1px solid var(--border-color);
&:nth-child(4n),
&:nth-child(4n-1)
{
background-color: var(--default-color);
}
&:first-child,
&:nth-child(2) {
border-top: 1px solid var(--border-color);
@ -26,7 +32,7 @@
}
&:hover {
background-color: var(--default-color);
background-color: var(--border-color);
}
}

View File

@ -44,7 +44,7 @@
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 list">
<div class="item" v-if="!loading" v-for="item in items">
<div class="item" v-if="!loading" v-for="item in items">
<span class="title">
<a :href="'/ma-collection/' + item._id">{{ item.artists_sort}} - {{ item.title }}</a>
<i class="icon-trash" @click="showConfirmDelete(item._id)"></i>