From c7d567978860c56dc387835ffbea8e7044ded8b9 Mon Sep 17 00:00:00 2001 From: koreacomp5 Date: Wed, 5 Nov 2025 23:45:13 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AC=EC=9D=B4=EB=93=9C=EB=B0=94=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/components/AppHeader.tsx | 35 ++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/src/app/components/AppHeader.tsx b/src/app/components/AppHeader.tsx index fea93c4..04688b0 100644 --- a/src/app/components/AppHeader.tsx +++ b/src/app/components/AppHeader.tsx @@ -353,15 +353,15 @@ export function AppHeader() { aria-expanded={mobileOpen} aria-controls="mobile-menu" onClick={() => setMobileOpen((v) => !v)} - className="inline-flex h-8 w-8 items-center justify-center rounded-md border border-neutral-200 xl:hidden" + className="group inline-flex h-8 w-8 items-center justify-center rounded-md border border-neutral-200 hover:border-neutral-300 hover:bg-neutral-100 transition-colors cursor-pointer xl:hidden" > - - - + + + - + @@ -477,9 +477,17 @@ export function AppHeader() { - {mobileOpen && ( -
setMobileOpen(false)}> -
e.stopPropagation()}> +
setMobileOpen(false)} + aria-hidden={!mobileOpen} + > +
e.stopPropagation()} + role="dialog" + aria-modal="true" + >
@@ -497,7 +505,13 @@ export function AppHeader() {
) : ( -
로그인 정보를 불러오는 중...
+
+
+
+
+
+
+
)}
setMobileOpen(false)} className="h-9 rounded-md border border-neutral-300 text-xs flex items-center justify-center hover:bg-neutral-100">포인트 히스토리 @@ -530,8 +544,7 @@ export function AppHeader() {
-
- )} +
); }