chore: add spacing between avatar sandbox rows

This commit is contained in:
Index 2024-06-27 22:22:21 -05:00
parent 350e3ab92f
commit 50b45b6614

View file

@ -455,7 +455,7 @@ async function LoadItems() {
<small class="text-muted d-block text-truncate">
by <a href="/users/${ (item.type !== 'hat' && item.type !== 'tool') ? '1' : item.creator.id }" class="text-reset">${ (item.type !== 'hat' && item.type !== 'tool') ? 'Polytoria' : item.creator.name }</a>
</small>
<small style="font-size: 0.8rem;" class="d-block text-truncate
<small style="font-size: 0.8rem;" class="d-block text-truncate mb-2
${ (item.price === 0) ? 'text-primary">Free' : (item.price !== "???") ? 'text-success"><i class="pi mr-1">$</i> ' + item.price : 'text-muted">???</small>' }
</small>
</div>
@ -528,7 +528,7 @@ function LoadWearing() {
<small class="text-muted d-block text-truncate">
by <a href="/users/${Cached.creator.id || "1"}" class="text-reset">${Cached.creator.name || "-"}</a>
</small>
<small style="font-size: 0.8rem;" class="d-block text-truncate
<small style="font-size: 0.8rem;" class="d-block text-truncate mb-2
${ (Cached.price === 0) ? 'text-primary">Free' : (Cached.price !== "???") ? 'text-success"><i class="pi mr-1">$</i> ' + Cached.price : 'text-muted">???</small>' }
</small>
</div>