diff --git a/.docs/.studio/app.config.json b/.docs/.studio/app.config.json index 08192dfdd..c769c4167 100644 --- a/.docs/.studio/app.config.json +++ b/.docs/.studio/app.config.json @@ -20,7 +20,11 @@ "title": "", "logo": true, "showLinkIcon": true, - "exclude": [] + "exclude": [], + "fixed": { + "initial": false, + "lg": true + } }, "footer": { "credits": { diff --git a/.docs/content/0.index.md b/.docs/content/0.index.md index 30ba8e6f0..8ed1c73ad 100644 --- a/.docs/content/0.index.md +++ b/.docs/content/0.index.md @@ -2,6 +2,9 @@ title: Home navigation: false layout: page +header: + fixed: + initial: true --- :ellipsis{right=0px width=75% blur=150px} diff --git a/components/app/AppHeader.vue b/components/app/AppHeader.vue index d053d468a..464da13ac 100644 --- a/components/app/AppHeader.vue +++ b/components/app/AppHeader.vue @@ -4,6 +4,10 @@ const { navigation } = useContent() const { hasDocSearch } = useDocSearch() const hasDialog = computed(() => navigation.value?.length > 1) + +defineProps({ + ...variants +})