Added tag photos.

This commit is contained in:
DebaucheryLibrarian
2021-03-16 02:31:23 +01:00
parent 398161b03b
commit 3bebf5bf51
76 changed files with 38 additions and 22 deletions

View File

@@ -21,14 +21,20 @@
>
<h4 class="stash-name">{{ stash.name }}</h4>
<ul class="stash-section stash-scenes nolist">
<ul
v-if="stash.scenes?.length > 0"
class="stash-section stash-scenes nolist"
>
<li
v-for="item in stash.scenes"
:key="item.id"
><Scene :release="item.scene" /></li>
</ul>
<ul class="stash-section stash-actors nolist">
<ul
v-if="stash.actors?.length > 0"
class="stash-section stash-actors nolist"
>
<li
v-for="item in stash.actors"
:key="item.id"
@@ -88,6 +94,7 @@ export default {
}
.stash {
width: 100%;
background: var(--background);
margin: 0 0 1rem 0;
box-shadow: 0 0 3px var(--shadow-weak);