Skip to content

Commit 3439e6b

Browse files
committed
Make NavMenu fixed on top
1 parent b0b1b91 commit 3439e6b

File tree

1 file changed

+1
-1
lines changed
  • apps/contract-verification/src/app/components

1 file changed

+1
-1
lines changed

apps/contract-verification/src/app/components/NavMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const NavItem: React.FC<NavItemProps> = ({ to, icon, title }) => {
2525

2626
export const NavMenu = () => {
2727
return (
28-
<nav className="d-flex flex-row justify-content-around bg-secondary">
28+
<nav className="d-flex flex-row justify-content-around bg-secondary fixed-top">
2929
<NavItem to="/" icon={<i className="fas fa-home"></i>} title="Verify" />
3030
<NavItem to="/receipts" icon={<i className="fas fa-receipt"></i>} title="Receipts" />
3131
<NavItem to="/lookup" icon={<i className="fas fa-search"></i>} title="Lookup" />

0 commit comments

Comments
 (0)