summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-19 21:30:35 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-19 21:30:35 +0100
commit6a493f1a07612043a6ab75f044059b67e3a8b95b (patch)
tree281b4d255f8f1791186b3dff59f9aeeeecb68017 /src/components
parent7180af5da5dd474cb4565ac406424d297888f57e (diff)
Better navbar layout
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Navbar/Navbar.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Navbar/Navbar.astro b/src/components/Navbar/Navbar.astro
index aea8909..4fa05a9 100644
--- a/src/components/Navbar/Navbar.astro
+++ b/src/components/Navbar/Navbar.astro
@@ -5,11 +5,11 @@ import NavLinks from './NavLinks.astro';
import Logo from './Logo.astro';
---
-<nav>
+<nav class="nav">
<Logo />
<NavLinks />
<div class="nav__bottom-row">
- <SwitchLanguageLink />
<Breadcrumbs />
+ <SwitchLanguageLink />
</div>
</nav>