diff --git a/frontend/src/components/Layout.css b/frontend/src/components/Layout.css index 2333c0f..584719f 100644 --- a/frontend/src/components/Layout.css +++ b/frontend/src/components/Layout.css @@ -284,7 +284,11 @@ .footer-brand { display: flex; align-items: center; - gap: 12px; + gap: 8px; +} + +.footer-icon { + color: var(--accent-primary); } .footer-logo { @@ -292,6 +296,10 @@ color: var(--text-primary); } +.footer-separator { + color: var(--text-muted); +} + .footer-tagline { color: var(--text-secondary); font-size: 0.875rem; diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index dea6650..9e2e559 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -218,7 +218,17 @@ function Layout({ children }: LayoutProps) {