diff --git a/test/src/components/Header.astro b/test/src/components/Header.astro index 2432f98..84c210d 100644 --- a/test/src/components/Header.astro +++ b/test/src/components/Header.astro @@ -9,7 +9,8 @@ import Switcher from './Switcher.astro' About Demo
@@ -22,12 +23,14 @@ header { margin-top: -8px; max-width: 1200px; height: 64px; - .header-start { + color: white; + .header-start, .header-end { display: flex; align-items: center; gap: 12px; a { text-decoration: none; + color: white; &:hover { text-decoration: underline; } diff --git a/test/src/components/Info.astro b/test/src/components/Info.astro index b2c7823..d132983 100644 --- a/test/src/components/Info.astro +++ b/test/src/components/Info.astro @@ -9,7 +9,7 @@ const { Title, Description } = Astro.props+
Documentation Package Source Code diff --git a/test/src/layouts/Default.astro b/test/src/layouts/Default.astro index 96846db..c8788f2 100644 --- a/test/src/layouts/Default.astro +++ b/test/src/layouts/Default.astro @@ -9,6 +9,7 @@ const { // Components import Header from '@components/Header.astro' import Info from '@components/Info.astro' +import Switcher from '@components/Switcher.astro' ---
@@ -17,6 +18,10 @@ import Info from '@components/Info.astro'