Files
sendou.ink/app/features/scanner/components/EventCard.module.css
2026-08-21 22:02:47 +03:00

40 lines
724 B
CSS

/* sendou.ink send status strip under a feed card */
.sendWrap {
display: flex;
flex-direction: column;
gap: var(--s-0-5);
}
.sendStrip {
display: flex;
gap: var(--s-3);
align-items: center;
padding: var(--s-1) var(--s-4);
border-radius: var(--radius-box);
background: var(--color-bg-high);
font-size: var(--font-2xs);
font-weight: var(--weight-semi);
color: var(--color-text-high);
}
.sent {
color: var(--color-success-high);
background: var(--color-success-low);
}
.failed {
color: var(--color-error-high);
background: var(--color-error-low);
}
.queued,
.sending {
color: var(--color-info-high);
background: var(--color-info-low);
}
.sendError {
color: inherit;
font-weight: var(--weight-body);
}