beta: header chip flagged by BETA_MODE config (default on)

This commit is contained in:
Giorgio Gilestro 2026-05-25 22:42:19 +02:00
parent 8bc546220d
commit a7d657e1b4
4 changed files with 20 additions and 0 deletions

View file

@ -1708,3 +1708,19 @@ a.btn-secondary:hover { color: var(--accent); border-color: var(--accent); }
.tier-card li.tier-card__excluded { color: var(--muted); }
.tier-card li.tier-card__excluded::before { content: "✕ "; color: var(--dim); }
.tier-card__cta { margin-top: auto; }
/* BETA indicator pill in the app header — see app/templates/base.html. */
.beta-chip {
display: inline-block;
margin-left: 8px;
padding: 2px 7px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.14em;
font-family: var(--font-mono);
color: var(--bg);
background: var(--accent);
border-radius: 2px;
vertical-align: middle;
user-select: none;
}