This commit is contained in:
cay 2026-04-11 13:37:00 +01:00
parent 80030183cd
commit 4fe6762d5e
2 changed files with 3 additions and 2 deletions

View File

@ -163,7 +163,7 @@
/* ── Rarity Kristalle ───────────────────── */
.gs-rarity {
position: absolute;
top: 75%;
top: 72%;
left: 0; right: 0;
display: flex; justify-content: center; flex-wrap: wrap;
gap: 1px; padding: 0 4px;
@ -173,7 +173,7 @@
/* ── Reichweite & Laufen Badges ─────────── */
.gs-range-race {
position: absolute;
top: 86%;
top: 82%;
left: 0; right: 0;
display: flex;
justify-content: center;

View File

@ -223,6 +223,7 @@ function renderGrid(grid, cards) {
onerror="this.src='/images/avatar_placeholder.svg'">
${c.attack != null ? `<span class="gs-stat-atk">${c.attack}</span>` : ""}
${c.defends != null ? `<span class="gs-stat-def">${c.defends}</span>` : ""}
${c.cooldown != null ? `<span class="gs-stat-cd">${c.cooldown}</span>` : ""}
<div class="gs-card-footer">
<span class="gs-count-owned">× ${available < 0 ? 0 : available}</span>
</div>