ui(deploy): LiveBanner component for live-apply tabs
Adds a warning banner that communicates live-apply semantics (changes bypass the Save/Redeploy cycle). Uses --warning-bg / --warning-border DS tokens. CSS class .liveBanner added to AppDeploymentPage.module.css. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { Info } from 'lucide-react';
|
||||
import styles from '../AppDeploymentPage.module.css';
|
||||
|
||||
export function LiveBanner() {
|
||||
return (
|
||||
<div className={styles.liveBanner}>
|
||||
<Info size={14} />
|
||||
<span>
|
||||
<strong>Live controls.</strong> Changes apply immediately to running agents and do
|
||||
not participate in the Save/Redeploy cycle.
|
||||
</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user