From 059dd26605733e8a89a115b7e02c4f07782d7ad7 Mon Sep 17 00:00:00 2001 From: beefchimi Date: Sun, 28 Jul 2024 14:24:25 -0400 Subject: [PATCH] :bug: [Navigation] Keep above intro content --- src/components/Navigation.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Navigation.astro b/src/components/Navigation.astro index 75670df..e03dd87 100644 --- a/src/components/Navigation.astro +++ b/src/components/Navigation.astro @@ -82,7 +82,8 @@ const {id, items = []} = Astro.props; .List { position: fixed; - z-index: var(--index-thermosphere); + /* 1 above the Intro content */ + z-index: calc(var(--index-thermosphere) + 1); bottom: var(--nav-list-bottom); right: 0;