Skip to content

Commit

Permalink
Make navbar scrollable (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinshoemaker authored Jan 29, 2021
1 parent 991cb5a commit 485b0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import NavBarLink from './NavBarLink';

function NavBar() {
return (
<nav className="pl-6 h-16 w-full flex items-center bg-gray-900 dark:bg-black shadow-lg z-10 fixed top-0">
<nav className="pl-6 h-16 w-full flex items-center bg-gray-900 dark:bg-black shadow-lg z-10 fixed top-0 overflow-auto">
<NavBarLink label="Home" href="/" />
<NavBarLink label="Blog" href="/blog" />
{/* <NavBarLink label="About" href="/about" /> */}
Expand Down

1 comment on commit 485b0c5

@vercel
Copy link

@vercel vercel bot commented on 485b0c5 Jan 29, 2021

Choose a reason for hiding this comment

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

Please sign in to comment.