Skip to content

Commit b205bc7

Browse files
committed
fix: add gap between navbar items for improved spacing
1 parent 17b4235 commit b205bc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Navbar.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const navLinks = [
1818
</div>
1919

2020
<div class="navbar-center hidden lg:flex">
21-
<ul class="menu menu-horizontal px-1">
21+
<ul class="menu menu-horizontal px-1 gap-1">
2222
{navLinks.map((link) => (
2323
<li>
2424
<a href={link.href} class:list={[currentPath === link.href || currentPath === `${link.href}/` || currentPath.startsWith(link.href + '/') ? 'menu-active' : null]}>

0 commit comments

Comments
 (0)