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() {
-
- )} +
); }