summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
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>