Skip to content

Commit 39deaf5

Browse files
committed
fix: temporary mobile nav
1 parent bce4fb1 commit 39deaf5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/layout/DesktopNavBar.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
page.subscribe(recompute);
4949
</script>
5050

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">
51+
<!-- 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">
5253
{#each NAV_LINKS as link, index}
5354
<a class="group relative text-lg font-medium text-white opacity-75" href={link.href} bind:this={indicators[index]}>
5455
{link.name}

src/components/layout/NavBar.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515

1616
<!-- Navigation -->
1717
<DesktopNavBar />
18-
<MobileNavBar />
18+
<!-- <MobileNavBar /> -->
1919
</div>
2020
</div>

0 commit comments

Comments
 (0)