diff --git a/public/js/quickmenu/carddeck.js b/public/js/quickmenu/carddeck.js index 6cad18f..1ce1949 100644 --- a/public/js/quickmenu/carddeck.js +++ b/public/js/quickmenu/carddeck.js @@ -419,17 +419,17 @@ function renderShell() { /* ── Rarity Kristalle ───────────────────── */ .kd-rarity { + position: absolute; + bottom: 20px; + left: 0; right: 0; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1px; - padding: 3px 4px; - background: rgba(0,0,0,0.82); - border-top: 1px solid #3a2810; - flex-shrink: 0; - min-height: 20px; - border-radius: 0; + padding: 0 4px; + pointer-events: none; + z-index: 4; } /* ── Empty / Loading States ──────────────── */ @@ -730,11 +730,11 @@ function renderCollectionGrid(grid, cards) { onerror="this.src='/images/avatar_placeholder.svg'"> ${c.attack != null ? `${c.attack}` : ""} ${c.defense != null ? `${c.defense}` : ""} - ${c.rarity ? `
${rarityImgs(c.rarity, 13)}
` : ""} + ${c.rarity ? `
${rarityImgs(c.rarity, 13)}
` : ""} `; }).join(""); @@ -768,6 +768,7 @@ function renderDeckGrid(grid, cards) { + ${c.rarity ? `
${rarityImgs(c.rarity, 14)}
` : ""} ${c.rarity ? `
${rarityImgs(c.rarity, 14)}
` : ""} `; }).join("");