This commit is contained in:
cay 2026-04-04 11:27:27 +01:00
parent 1a35620615
commit f58a47fe31

View File

@ -296,9 +296,10 @@ function renderShell() {
}
.kd-count-owned {
font-family: "Cinzel", serif;
font-size: 10px;
color: #c8a86a;
font-size: 13px;
color: #000;
font-weight: bold;
text-shadow: 0 0 3px rgba(255,255,255,0.6);
}
.kd-count-deck {
font-family: "Cinzel", serif;
@ -762,7 +763,7 @@ function renderCollectionGrid(grid, cards) {
${c.defends != null ? `<span class="kd-stat-def">${c.defends}</span>` : ""}
${c.cooldown != null ? `<span class="kd-stat-cd">${c.cooldown}</span>` : ""}
<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>
</div>
${c.rarity ? `<div class="kd-rarity">${rarityImgs(c.rarity, 13)}</div>` : ""}
</div>`;