Add new item replacement comparison

This commit is contained in:
Jan Bader
2026-06-16 20:47:35 +02:00
parent 7ce28410fc
commit a899c84791
4 changed files with 236 additions and 5 deletions
+25
View File
@@ -230,6 +230,31 @@ h3 { margin-bottom: 0; }
.gear-card .effect-row input[data-effect-value] { width: 100%; }
.cap-hint { color: var(--muted); font-size: 0.8rem; margin-top: 0.2rem; }
.no-effects-note { color: var(--muted); font-size: 0.9rem; margin: 0; }
.new-item-card {
display: grid;
gap: 0.75rem;
margin: 1rem 0;
}
.replacement-results {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
}
.replacement-results > div {
border: 1px solid var(--border);
border-radius: 0.9rem;
background: rgba(255, 255, 255, 0.05);
padding: 0.75rem;
}
.replacement-results span {
display: block;
color: var(--muted);
margin-bottom: 0.25rem;
}
.replacement-results strong { font-size: 1.35rem; }
.delta-positive { color: #86efac; }
.delta-neutral { color: var(--muted); }
.delta-negative { color: #f87171; }
@media (max-width: 900px) {
.hero, .results { grid-template-columns: 1fr; }