Files
sendou.ink/app/features/scanner/components/MetaChips.module.css
Kalle 41070f4594
Some checks failed
E2E Tests / e2e (push) Has been cancelled
Tests and checks on push / run-checks-and-tests (push) Has been cancelled
Updates translation progress / update-translation-progress-issue (push) Has been cancelled
Scanner improvements (#3331)
2026-08-09 18:40:52 +03:00

28 lines
633 B
CSS

/* time + confidence + event type read as one unit, the detail text after it
sits further away */
.pills {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: var(--s-1);
}
/* neutral chip, the icon carries the accent and documents the value — full
label on hover via title */
.chip {
display: inline-flex;
align-items: center;
gap: 5px;
padding: var(--s-0-5) var(--s-2-5);
border-radius: var(--radius-full);
border: var(--border-style);
background: var(--color-bg);
color: var(--color-text);
font-size: var(--font-2xs);
font-weight: var(--weight-bold);
& svg {
color: var(--color-text-accent);
}
}