diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-06 18:21:55 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-06 18:21:55 +0100 |
commit | 90b3a901f3288033cf491192741badc22293d86e (patch) | |
tree | 9ba17a00174b997cc0aa43359c457f4f2c4944d4 /apps/website/src/components | |
parent | aad63445401ca710bb492928c39f0b2fc1cb4198 (diff) | |
download | Nexus-90b3a901f3288033cf491192741badc22293d86e.tar.gz Nexus-90b3a901f3288033cf491192741badc22293d86e.tar.bz2 Nexus-90b3a901f3288033cf491192741badc22293d86e.zip |
OneConfig Download page
Diffstat (limited to 'apps/website/src/components')
-rw-r--r-- | apps/website/src/components/base/Section.astro | 2 | ||||
-rw-r--r-- | apps/website/src/components/base/navbar/Navbar.astro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/website/src/components/base/Section.astro b/apps/website/src/components/base/Section.astro index c463a16..6ea3075 100644 --- a/apps/website/src/components/base/Section.astro +++ b/apps/website/src/components/base/Section.astro @@ -10,7 +10,7 @@ interface Props extends HTMLAttributes<'section'> { } const { - maxWidth = '1080px', + maxWidth = '1024px', colReverse = true, wrapperClass = '', wFull = true, 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}/> |