chore: add spacing between avatar sandbox rows
This commit is contained in:
parent
350e3ab92f
commit
50b45b6614
1 changed files with 2 additions and 2 deletions
|
|
@ -455,7 +455,7 @@ async function LoadItems() {
|
||||||
<small class="text-muted d-block text-truncate">
|
<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>
|
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>
|
||||||
<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>' }
|
${ (item.price === 0) ? 'text-primary">Free' : (item.price !== "???") ? 'text-success"><i class="pi mr-1">$</i> ' + item.price : 'text-muted">???</small>' }
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -528,7 +528,7 @@ function LoadWearing() {
|
||||||
<small class="text-muted d-block text-truncate">
|
<small class="text-muted d-block text-truncate">
|
||||||
by <a href="/users/${Cached.creator.id || "1"}" class="text-reset">${Cached.creator.name || "-"}</a>
|
by <a href="/users/${Cached.creator.id || "1"}" class="text-reset">${Cached.creator.name || "-"}</a>
|
||||||
</small>
|
</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>' }
|
${ (Cached.price === 0) ? 'text-primary">Free' : (Cached.price !== "???") ? 'text-success"><i class="pi mr-1">$</i> ' + Cached.price : 'text-muted">???</small>' }
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Reference in a new issue