This commit is contained in:
cay 2026-04-04 11:19:02 +01:00
parent e7081afe93
commit 4f41e97e25

View File

@ -286,15 +286,14 @@ function renderShell() {
/* ── Karten-Footer: Anzahlen ────────────── */ /* ── Karten-Footer: Anzahlen ────────────── */
.kd-card-footer { .kd-card-footer {
position: absolute;
bottom: 4px;
left: 6px;
display: flex; display: flex;
justify-content: space-between;
align-items: center; align-items: center;
padding: 2px 5px; background: transparent;
background: rgba(0,0,0,0.85); z-index: 5;
border-top: 1px solid #3a2810; pointer-events: none;
border-radius: 0 0 6px 6px;
flex-shrink: 0;
height: 18px;
} }
.kd-count-owned { .kd-count-owned {
font-family: "Cinzel", serif; font-family: "Cinzel", serif;
@ -754,7 +753,6 @@ function renderCollectionGrid(grid, cards) {
${c.cooldown != null ? `<span class="kd-stat-cd">${c.cooldown}</span>` : ""} ${c.cooldown != null ? `<span class="kd-stat-cd">${c.cooldown}</span>` : ""}
<div class="kd-card-footer"> <div class="kd-card-footer">
<span class="kd-count-owned" title="Besitzt du">${c.amount}×</span> <span class="kd-count-owned" title="Besitzt du">${c.amount}×</span>
<span class="kd-count-deck" title="Im Deck">🃏 ${inDeck}</span>
</div> </div>
${c.rarity ? `<div class="kd-rarity">${rarityImgs(c.rarity, 13)}</div>` : ""} ${c.rarity ? `<div class="kd-rarity">${rarityImgs(c.rarity, 13)}</div>` : ""}
</div>`; </div>`;