From 06a7fb4c2ea821ec51577d41096a738c0dcf4afb Mon Sep 17 00:00:00 2001 From: Hosung99 Date: Thu, 5 Dec 2024 16:31:08 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Navbar=20=ED=86=A0=EA=B8=80=EC=8B=9C=20?= =?UTF-8?q?=EC=98=81=EC=97=AD=EC=9D=B4=20=EB=82=A8=EC=95=84=EC=9E=88?= =?UTF-8?q?=EB=8D=98=20=ED=98=84=EC=83=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/component/template/NabvarLayout.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/frontend/src/component/template/NabvarLayout.tsx b/frontend/src/component/template/NabvarLayout.tsx index b95d45e..56a87b7 100644 --- a/frontend/src/component/template/NabvarLayout.tsx +++ b/frontend/src/component/template/NabvarLayout.tsx @@ -17,16 +17,20 @@ export default function NavbarLayout() { } return ( -
setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}> {isNavbarOpen && ( {isHovered && ( @@ -57,6 +61,6 @@ export default function NavbarLayout() { )} -
+ ); }