fix: revert nav padding changes on bigger screens

This commit is contained in:
Petri Partio
2024-05-31 13:55:02 +03:00
parent 70411c9e17
commit 7c6aa82617

View File

@@ -72,5 +72,5 @@ export default function Nav() {
}
const NavLink = (props: React.PropsWithChildren<LinkProps>) => (
<Link className="px-6 py-4 underline-offset-4 hover:underline lg:px-6" {...props} />
<Link className="px-6 py-4 underline-offset-4 hover:underline lg:px-6 lg:py-1" {...props} />
);