fix(admin-invites): badge default bg color, registered users as plain text list

This commit is contained in:
2026-07-06 08:43:07 +08:00
parent 53c9c4bb86
commit 367235fb99
2 changed files with 4 additions and 4 deletions

View File

@@ -118,7 +118,7 @@ code { background: var(--bg); padding: .15rem .4rem; border-radius: 4px; font-si
.postcard-info { display: flex; flex-direction: column; gap: .15rem; font-size: .9rem; }
/* Badge */
.badge { display: inline-block; padding: .1rem .4rem; border-radius: 999px; font-size: .7rem; font-weight: 600; color: #fff; white-space: nowrap; line-height: 1.4; align-self: center; }
.badge { display: inline-block; padding: .1rem .4rem; border-radius: 999px; font-size: .7rem; font-weight: 600; color: #fff; background: var(--text-muted); white-space: nowrap; line-height: 1.4; align-self: center; }
.badge-sent { background: var(--sent); }
.badge-delivered { background: var(--delivered); }
.badge-received { background: var(--received); }