diff --git a/src/layout/BurgerMenu/BurgerMenu.tsx b/src/layout/BurgerMenu/BurgerMenu.tsx index d3e1b53f..aef12d4a 100644 --- a/src/layout/BurgerMenu/BurgerMenu.tsx +++ b/src/layout/BurgerMenu/BurgerMenu.tsx @@ -16,7 +16,7 @@ const BurgerMenu = ({ isOpen, children }: BurgerMenuProps) => { initial="closed" variants={variants} id="burger_menu" - className="flex fixed top-20 left-0 z-10 flex-col justify-center items-center pb-2 w-screen bg-zinc-100 shadow-md lg:hidden" + className="flex fixed top-[70px] left-0 z-10 flex-col justify-center items-center py-2 w-screen bg-zinc-100 shadow-md lg:hidden" > {children} diff --git a/src/layout/GithubCorner/GithubCorner.tsx b/src/layout/GithubCorner/GithubCorner.tsx index 57abbb1c..e9c1afbd 100644 --- a/src/layout/GithubCorner/GithubCorner.tsx +++ b/src/layout/GithubCorner/GithubCorner.tsx @@ -3,7 +3,7 @@ export default function GithubCorner() { diff --git a/src/layout/Logo/Logo.tsx b/src/layout/Logo/Logo.tsx index e976c648..5e424f4b 100644 --- a/src/layout/Logo/Logo.tsx +++ b/src/layout/Logo/Logo.tsx @@ -11,7 +11,7 @@ function Logo({ classNames = '' }: LogoProps) { {/* eslint-disable-next-line jsx-a11y/anchor-is-valid */} diff --git a/src/layout/Navigation/Navigation.tsx b/src/layout/Navigation/Navigation.tsx index 6f0ace32..9581b56f 100644 --- a/src/layout/Navigation/Navigation.tsx +++ b/src/layout/Navigation/Navigation.tsx @@ -16,7 +16,6 @@ import { useApplicationContext } from 'src/features/application/context'; import AvatarIcon from '../../../public/images/avatar.svg'; import GithubCorner from '../GithubCorner/GithubCorner'; - function Navigation() { const { user, loading, displayName } = useApplicationContext(); @@ -35,7 +34,11 @@ function Navigation() {