Skip to content

Commit

Permalink
docs: fix header gradient shows above all the content (nuxt-hub#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
negativems committed Feb 25, 2025
1 parent 24e0efb commit 548481a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/app/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ const links = computed(() => [
<AppHeader />
<UMain class="relative">
<HeroBackground
class="absolute w-full -top-px transition-all text-(--ui-primary) shrink-0"
class="absolute w-full -top-px transition-all text-(--ui-primary) shrink-0 -z-10"
:class="[
isLoading ? 'animate-pulse' : (appear ? heroBackgroundClass : 'opacity-0'),
appeared ? 'duration-[400ms]': 'duration-1000'
appeared ? 'duration-[400ms]' : 'duration-1000'
]"
/>
<NuxtLayout>
Expand Down

0 comments on commit 548481a

Please sign in to comment.