This commit is contained in:
Cay 2026-03-15 12:04:15 +00:00
parent faad1c137a
commit 430ed2f9c4
2 changed files with 16 additions and 7 deletions

View File

@ -899,6 +899,21 @@ body {
0 0 18px #caa24b;
}
/* Info Text über den Taschen */
.market-info-text {
font-family: "Cinzel", serif;
font-size: 13px;
color: #5c3b20;
text-align: center;
margin: 0 0 12px 0;
padding: 10px 16px;
border-bottom: 1px solid rgba(139, 106, 60, 0.4);
letter-spacing: 0.3px;
line-height: 1.6;
font-style: italic;
}
/* Placeholder Texte */
.market-placeholder {

View File

@ -54,6 +54,7 @@ Geheimhandel
<div class="market-content">
<div class="market-tab-content active" id="market-inventory">
<p class="market-info-text">Erweitere deinen Taschenplatz indem du zusätzliche Taschen freischaltest</p>
<div id="market-pages"></div>
</div>
@ -85,11 +86,6 @@ async function loadPages() {
let html = "";
html += `
<h4 class="market-title">Erweitere deine Taschenplätze</h4>
<div class="market-slots">
`;
for (let i = 1; i <= data.maxPages; i++) {
const price = data.prices.find((p) => p.page === i);
@ -121,8 +117,6 @@ async function loadPages() {
}
}
html += `</div>`; // slots container schließen
container.innerHTML = html;
} catch (err) {
console.error("Schwarzmarkt Fehler:", err);