Compare commits

...

2 Commits

Author SHA1 Message Date
eefc213144 0.47.1 2026-03-04 04:03:51 +01:00
849b4f0de7 Improved scene actor tag spacing CSS. 2026-03-04 04:03:48 +01:00
3 changed files with 6 additions and 10 deletions

4
package-lock.json generated
View File

@@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.47.0",
"version": "0.47.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.47.0",
"version": "0.47.1",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@@ -92,7 +92,7 @@
"overrides": {
"vite": "$vite"
},
"version": "0.47.0",
"version": "0.47.1",
"imports": {
"#/*": "./*.js"
}

View File

@@ -142,10 +142,9 @@
<div class="tags">
<div
v-for="(actorTags, index) in tags"
v-for="actorTags in tags"
:key="`tags-${actorTags.actor?.slug || 'scene'}`"
class="tags-section"
:class="{ space: index > 1 }"
>
<ul class="nolist">
<li
@@ -665,15 +664,12 @@ function copySummary() {
.tags {
display: flex;
flex-wrap: wrap;
gap: .25rem;
gap: .25rem 1rem;
}
.tags-section {
display: inline-flex;
&.space {
margin-left: .5rem;
}
gap: .25rem;
}
.tags-actor {