Skip to content

Commit

Permalink
fix(www): decrease nav gap on smaller screens (#933)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander B committed Jun 5, 2023
1 parent b1c9c86 commit 087dfaa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/shy-pears-film.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@lagon/www': patch
---

Decrease nav gap on smaller screens
2 changes: 1 addition & 1 deletion www/lib/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const Header = () => {
<button className="px-4 md:hidden" onClick={() => setOpen(!open)} aria-label="Open menu">
{open ? <CloseIcon /> : <BurgerIcon />}
</button>
<div className="hidden gap-12 md:flex">
<div className="hidden gap-6 md:flex lg:gap-12">
<Text size="a" href="/#features" scroll={false}>
Features
</Text>
Expand Down

1 comment on commit 087dfaa

@vercel
Copy link

@vercel vercel bot commented on 087dfaa Jun 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

www – ./www

www-git-main-lagon.vercel.app
lagon.app
lagon.dev
www-lagon.vercel.app

Please sign in to comment.