fix: use existing success banner style for role created indicator

Match the status-online pattern already used for "Role saved" in the
same file, instead of introducing a one-off accent-primary variant.
This commit is contained in:
Jannis Braun
2026-03-22 00:12:33 +01:00
parent 0bd87c4ebf
commit b8c8e39dfd
@@ -329,7 +329,7 @@ function RoleEditView({ role, spaceId, onBack, onDeleted, onCopied }: RoleEditVi
</div> </div>
{isNewlyCreated && !hasChanges && ( {isNewlyCreated && !hasChanges && (
<div className="p-2 bg-accent-primary/10 border border-accent-primary/20 rounded text-txt-secondary text-sm"> <div className="p-2 bg-status-online/10 border border-status-online/30 rounded text-status-online text-sm">
Role created customize it below Role created customize it below
</div> </div>
)} )}