diff options
Diffstat (limited to 'apps/website/src/components/base/navbar/Navbar.astro')
-rw-r--r-- | apps/website/src/components/base/navbar/Navbar.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/website/src/components/base/navbar/Navbar.astro b/apps/website/src/components/base/navbar/Navbar.astro index bd2c2b5..8903b7e 100644 --- a/apps/website/src/components/base/navbar/Navbar.astro +++ b/apps/website/src/components/base/navbar/Navbar.astro @@ -8,7 +8,7 @@ interface Props extends HTMLAttributes<'div'> {} const props = Astro.props; --- <div {...props} class="absolute w-full flex flex-row justify-center h-screen max-h-[110px] px-3 z-navbar text-[16px]"> - <nav class="w-full max-w-[1080px] flex flex-col md:flex-row justify-between items-center"> + <nav class="w-full max-w-[1024px] flex flex-col md:flex-row justify-between items-center"> <ul class="flex flex-row justify-start gap-4 max-md:mt-4"> {(config as Config).navbar.left.map((element, index) => ( <NavbarElement {element} {index}/> |