diff --git a/src/App.css b/src/App.css index 7ce377f..593c0bb 100644 --- a/src/App.css +++ b/src/App.css @@ -13,7 +13,7 @@ .hololake-bar__brand, .hololake-bar__library { border: 0; background: transparent; color: inherit; cursor: pointer; } .hololake-bar__brand { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 650; letter-spacing: .02em; } .hololake-bar__brand b { color: var(--accent-blue); font-weight: 600; } -.hololake-bar__mark { display: grid; place-items: center; width: 20px; height: 20px; color: var(--accent-blue); border: 1px solid var(--border-strong); border-radius: 50%; } +.hololake-bar__mark { display: block; width: 24px; height: 28px; object-fit: contain; object-position: center; flex: 0 0 24px; } .hololake-bar__line { width: 1px; height: 16px; background: var(--border-default); } .hololake-bar__context { color: var(--text-secondary); font-size: 12px; } .hololake-bar__library { margin-left: auto; padding: 5px 9px; border: 1px solid var(--border-default); border-radius: 6px; color: var(--text-secondary); font-size: 12px; } diff --git a/src/App.tsx b/src/App.tsx index 78ac6ad..62b891c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -23,6 +23,7 @@ import { NoteRetargetingDialogs } from './components/note-retargeting/NoteRetarg import { StartupScreen } from './components/StartupScreen' import { HoloLakeHome } from './components/HoloLakeHome' import { GUANGHU_THEME_LABELS } from './lib/guanghuTheme' +import guanghuLogoLight from './assets/guanghu-logo-light.png' import { useAiAgentsOnboarding } from './hooks/useAiAgentsOnboarding' import { useAiAgentsStatus } from './hooks/useAiAgentsStatus' import { useVaultAiGuidanceStatus } from './hooks/useVaultAiGuidanceStatus' @@ -1627,7 +1628,7 @@ function MainApp({ noteWindowParams }: { noteWindowParams: NoteWindowParams | nu
- + 光湖语言人格驱动操作系统 diff --git a/src/assets/guanghu-logo-light.png b/src/assets/guanghu-logo-light.png new file mode 100644 index 0000000..f9fcd07 Binary files /dev/null and b/src/assets/guanghu-logo-light.png differ