Skip to content

Commit a13631c

Browse files
committed
style: remove unnecessary overflow property from nav bar component for improved layout
1 parent 6df9583 commit a13631c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/nav-bar/desktop/nav-bar-desktop.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function DesktopNavBar({ links }: { links: NavGroup[] }) {
2020
</div>
2121
{/* Uncomment when ready to add registration button back */}
2222
{/* <div className="min-w-fit lg:w-8/12 flex items-center justify-start"> */}
23-
<div className="min-w-fit flex items-center justify-start overflow-x-auto whitespace-nowrap">
23+
<div className="min-w-fit flex items-center justify-start">
2424
{links.map((link) => (
2525
<NavGroupComponent key={link.name} name={link.name} links={link.links} />
2626
))}

0 commit comments

Comments
 (0)