diff --git a/packages/dashboard/index.html b/packages/dashboard/index.html index 7584097..0cca8f9 100644 --- a/packages/dashboard/index.html +++ b/packages/dashboard/index.html @@ -214,10 +214,31 @@ @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } } .animate-pulse { animation: pulse 2s infinite; } + + .toast { + position: fixed; + top: 1.5rem; + right: 1.5rem; + z-index: 9999; + background: var(--surface); + border: 1px solid var(--green); + border-radius: 8px; + padding: 1rem 1.5rem; + max-width: 420px; + box-shadow: 0 8px 32px rgba(0,0,0,0.4); + transform: translateX(120%); + transition: transform 0.3s ease; + } + .toast.show { transform: translateX(0); } + .toast.error { border-color: var(--red); } + .toast-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; } + .toast-body { font-size: 0.8rem; color: var(--text-dim); }
+