Skip to content

Commit

Permalink
mess with navbar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaZel committed Feb 29, 2024
1 parent 8690e73 commit cc4f6f9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,20 @@ import { useAuth } from "@hooks";
const Navbar = () => {
const [dropdownVisible, setDropdownVisible] = useState(false);
const handleMenuClick: React.MouseEventHandler = () => {
setDropdownVisible((visible) => !visible);
setDropdownVisible((visible)

=> !visible);
};
const { status, onSignIn } = useAuth();

return (
<nav
className="top-0 z-10 flex h-[60px] w-full flex-row items-center
justify-between border border-dark-tan bg-med-tan"




>
<div className="pl-[20px] font-serif text-xl font-medium sm:pl-[40px] md:text-2xl">
<Link href="/">The Legacy Project</Link>
Expand Down

0 comments on commit cc4f6f9

Please sign in to comment.