fix: add spacing below dismiss alert on Runtime page
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m20s
CI / deploy (push) Has been cancelled
CI / docker (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-12 16:58:01 +02:00
parent be96336974
commit c10d207d98
2 changed files with 4 additions and 1 deletions

View File

@@ -7,6 +7,9 @@
background: var(--bg-body);
}
/* Dismiss alert */
.dismissAlert { margin-bottom: 20px; }
/* Stat strip */
.statStrip {
display: grid;

View File

@@ -297,7 +297,7 @@ export default function AgentHealth() {
{/* No agents warning + dismiss — shown when app-scoped, no agents, admin */}
{appId && agentList.length === 0 && isAdmin && (
<>
<Alert variant="warning" title="No agents connected">
<Alert variant="warning" title="No agents connected" className={styles.dismissAlert}>
<span>
{catalogEntry?.managed ? 'Managed app' : 'Discovered app'} &mdash; {(catalogEntry?.exchangeCount ?? 0).toLocaleString()} exchanges recorded.
{' '}You can dismiss this application to remove it and all associated data.