Hiding more than 2 rows of tags under expand button on scene page. Fixed album background being bright in dark mode.

This commit is contained in:
DebaucheryLibrarian
2021-02-05 02:35:00 +01:00
parent 5906ed5948
commit 3e0a4406eb
3 changed files with 108 additions and 17 deletions

View File

@@ -51,12 +51,10 @@
</h2>
</div>
<div
<Tags
v-if="release.tags.length > 0"
class="row"
>
<Tags :tags="release.tags" />
</div>
:tags="release.tags"
/>
<div class="row associations">
<ul class="actors nolist">
@@ -320,6 +318,8 @@ export default {
.title {
display: inline-flex;
margin: 0;
font-size: 1.5rem;
line-height: 1.25;
.icon {
fill: var(--shadow);
@@ -452,6 +452,10 @@ export default {
display: inline-block;
}
.title {
font-size: 1.25rem;
}
.actors {
grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
}