summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-18 19:12:08 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-18 19:12:08 +0100
commit873263efd06201981f9047011079d07dba97745a (patch)
tree772c0ff4d2bac772b098b9343af63acf9b6c54c2 /src/components
parent0ca6be1d9ed78a9da7daf685715c6c6cba647df7 (diff)
Reorders navbar items
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Navbar.astro14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro
index 40e671b..654b085 100644
--- a/src/components/Navbar.astro
+++ b/src/components/Navbar.astro
@@ -11,14 +11,14 @@ const t = translate(locale);
---
<nav>
- <div class="nav__top-banner">
- <p class="title--small logo">
- <a href="/">
- {t(tSite, { key: 'scots-leid-associe' })}
- </a>
- </p>
+ <p class="title--small nav__logo">
+ <a href="/">
+ {t(tSite, { key: 'scots-leid-associe' })}
+ </a>
+ </p>
+ <NavLinks />
+ <div class="nav__bottom-row">
<SwitchLanguageLink />
<Breadcrumbs />
</div>
- <NavLinks />
</nav>