UI styling / code improvements (#307)

Clean up and improve UI styling

* fix: UI - dependency cleanup
* chore: UI - start script
* refactor: UI - Extract Header
* fix: UI - Header styling
* fix: UI - LogViewer styling
* fix: UI - Models styling
* fix: UI - Activity styling
* fix: UI - ConnectionStatus colors
* review: UI - table border colors
This commit is contained in:
Oleg Shulyakov
2025-09-19 20:47:17 +03:00
committed by GitHub
parent c36986fef6
commit fc3bb716df
9 changed files with 262 additions and 153 deletions
+2 -2
View File
@@ -7,9 +7,9 @@ const ConnectionStatusIcon = () => {
const eventStatusColor = useMemo(() => {
switch (connectionStatus) {
case "connected":
return "bg-green-500";
return "bg-emerald-500";
case "connecting":
return "bg-yellow-500";
return "bg-amber-500";
case "disconnected":
default:
return "bg-red-500";