diff --git a/client/src/components/Chat/Header.tsx b/client/src/components/Chat/Header.tsx index 8a9bd80c23..93a265f4a2 100644 --- a/client/src/components/Chat/Header.tsx +++ b/client/src/components/Chat/Header.tsx @@ -39,7 +39,7 @@ export default function Header() {
diff --git a/client/src/components/Nav/Nav.tsx b/client/src/components/Nav/Nav.tsx index d425468ca6..a692274719 100644 --- a/client/src/components/Nav/Nav.tsx +++ b/client/src/components/Nav/Nav.tsx @@ -30,7 +30,7 @@ const NavMask = memo( id="mobile-nav-mask-toggle" role="button" tabIndex={0} - className={`nav-mask transition-opacity duration-500 ease-in-out ${navVisible ? 'active opacity-100' : 'opacity-0'}`} + className={`nav-mask transition-opacity duration-200 ease-in-out ${navVisible ? 'active opacity-100' : 'opacity-0'}`} onClick={toggleNavVisible} onKeyDown={(e) => { if (e.key === 'Enter' || e.key === ' ') { @@ -186,7 +186,7 @@ const Nav = memo(