Show max-roll effect value in totals

This commit is contained in:
Jan Bader
2026-06-16 15:13:57 +02:00
parent 02e63d10dd
commit 9432b6a4ce
3 changed files with 42 additions and 8 deletions
+10 -5
View File
@@ -152,18 +152,23 @@ h3 { margin-bottom: 0; }
.effect-totals {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 0.75rem;
}
.effect-pill {
display: flex;
justify-content: space-between;
display: grid;
grid-template-columns: 1fr auto;
gap: 1rem;
align-items: start;
border: 1px solid var(--border);
border-radius: 999px;
padding: 0.55rem 0.8rem;
border-radius: 1rem;
padding: 0.75rem 0.85rem;
background: rgba(255, 255, 255, 0.05);
}
.effect-pill small {
grid-column: 1 / -1;
color: var(--muted);
}
.section-heading { margin: 1.5rem 0 1rem; }
.section-heading p { color: var(--muted); }