mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-24 20:27:13 -05:00
40 lines
724 B
CSS
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);
|
|
}
|