v0.5.13: стенды в sticky-header — чипсы вместо карточек

This commit is contained in:
2026-08-03 09:27:00 +04:00
parent fa74edf076
commit d26f9a6818
3 changed files with 51 additions and 18 deletions
+42
View File
@@ -74,6 +74,48 @@ body {
color: var(--brand-gray);
}
/* ── Header stands chips ── */
.header-stands {
display: flex;
gap: 8px;
margin-top: 8px;
}
.stand-chip {
display: flex;
align-items: center;
gap: 6px;
padding: 4px 14px;
border: 2px solid var(--border);
border-radius: 100px;
text-decoration: none;
font-size: 13px;
font-weight: 600;
color: var(--text-muted);
transition: all 0.15s;
}
.stand-chip:hover {
border-color: var(--brand-primary);
color: var(--brand-primary);
}
.stand-chip .stand-name {
text-transform: uppercase;
font-size: 12px;
}
.stand-chip .stand-count {
font-size: 11px;
opacity: 0.7;
}
.stand-active {
border-color: var(--brand-primary);
background: #eff6ff;
color: var(--brand-primary);
}
/* ── Layout ── */
main {
max-width: 960px;