Skip to content

Commit e56314f

Browse files
committed
Update navigation bar color
1 parent 3e864f6 commit e56314f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/NavigationBar/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import { Link } from "react-router-dom";
22

33
export default function NavigationBar() {
44
return (
5-
<div className="rounded-xl hidden px-4 sm:flex sm:justify-between text-center fixed bottom-5 left-[50%] ml-[-150px] bg-slate-400 dark:bg-stone-400 w-[300px] h-[50px]">
6-
<Link className="hover:bg-stone-800 w-[33%] h-full leading-[50px]" to="/about">About</Link>
7-
<Link className="hover:bg-stone-800 w-[33%] h-full leading-[50px]" to="/gallery">Gallery</Link>
8-
<Link className="hover:bg-stone-800 w-[33%] h-full leading-[50px]" to="/blog">Blog</Link>
5+
<div className="rounded-xl hidden px-4 sm:flex sm:justify-between text-center fixed bottom-5 left-[50%] ml-[-150px] bg-slate-400 dark:bg-slate-800 border-[1px] dark:border-stone-400 w-[300px] h-[50px]">
6+
<Link className="hover:bg-slate-500 dark:hover:bg-slate-700 w-[33%] h-full leading-[50px]" to="/about">About</Link>
7+
<Link className="hover:bg-slate-500 dark:hover:bg-slate-700 w-[33%] h-full leading-[50px]" to="/gallery">Gallery</Link>
8+
<Link className="hover:bg-slate-500 dark:hover:bg-slate-700 w-[33%] h-full leading-[50px]" to="/blog">Blog</Link>
99
</div>
1010
)
1111
}

0 commit comments

Comments
 (0)