diff options
Diffstat (limited to 'apps/website/src/components/base/Navbar.astro')
-rw-r--r-- | apps/website/src/components/base/Navbar.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/website/src/components/base/Navbar.astro b/apps/website/src/components/base/Navbar.astro index f4f2f49..a3a82fe 100644 --- a/apps/website/src/components/base/Navbar.astro +++ b/apps/website/src/components/base/Navbar.astro @@ -5,7 +5,7 @@ import NavbarElement from "./NavbarElement.astro"; --- -<div class="w-full flex flex-row justify-center h-screen max-h-[110px] px-3"> +<div class="absolute w-full flex flex-row justify-center h-screen max-h-[110px] px-3"> <nav class="w-full max-w-[1080px] flex flex-col md:flex-row justify-between items-center"> <ul class="flex flex-row justify-start gap-4"> {(config as Config).navbar.left.map((element, index) => ( @@ -18,4 +18,4 @@ import NavbarElement from "./NavbarElement.astro"; ))} </ul> </nav> -</div>
\ No newline at end of file +</div> |