Skip to content

Commit bbd52e5

Browse files
authored
Merge pull request #41 from iskandervdh/fix-navbar-button-borders
Fix nav button outline getting cut off
2 parents ca9e9bd + 9e77796 commit bbd52e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/sections/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export function Navbar() {
4848
<img src={icon} id="logo" alt="logo" className="cursor-pointer w-14 h-14" draggable={false} />
4949
</Link>
5050

51-
<ul className="hidden gap-4 overflow-x-auto md:flex">
51+
<ul className="hidden gap-4 p-2 overflow-x-auto md:flex">
5252
{Object.entries(NAV_PAGES).map(([page, route]) => (
5353
<NavbarItem key={page} page={page as keyof typeof NAV_PAGES} route={route} />
5454
))}

0 commit comments

Comments
 (0)