We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce4fb1 commit 39deaf5Copy full SHA for 39deaf5
src/components/layout/DesktopNavBar.svelte
@@ -48,7 +48,8 @@
48
page.subscribe(recompute);
49
</script>
50
51
-<div class="relative hidden w-fit flex-row items-center justify-end gap-4 pl-12 md:flex md:gap-12 md:pl-24">
+<!-- TODO: Remove flex when mobile nav is fixed -->
52
+<div class="relative flex w-fit flex-row items-center justify-end gap-4 pl-12 md:flex md:gap-12 md:pl-24">
53
{#each NAV_LINKS as link, index}
54
<a class="group relative text-lg font-medium text-white opacity-75" href={link.href} bind:this={indicators[index]}>
55
{link.name}
src/components/layout/NavBar.svelte
@@ -15,6 +15,6 @@
15
16
<!-- Navigation -->
17
<DesktopNavBar />
18
- <MobileNavBar />
+ <!-- <MobileNavBar /> -->
19
</div>
20
0 commit comments