fixed animation for mobile nav, and theme toggle
All checks were successful
Deploy Jody's App / build-and-deploy (push) Successful in 15s

This commit is contained in:
2026-01-07 21:18:25 -06:00
parent 9a84d4b78c
commit 66f63523e2
2 changed files with 45 additions and 39 deletions

View File

@@ -71,10 +71,10 @@ export function Navbar({ onNav }: { onNav: (id: string) => void }) {
</div>
<div
className={`md:hidden overflow-hidden transition-[max-height,opacity,transform] duration-300 ease-out ${
className={`md:hidden transition-[max-height,opacity,transform] duration-300 ease-out ${
open
? "max-h-96 opacity-100 translate-y-0"
: "max-h-0 opacity-0 -translate-y-2 pointer-events-none"
? "max-h-96 overflow-visible opacity-100 translate-y-0"
: "max-h-0 overflow-hidden opacity-0 -translate-y-2 pointer-events-none"
}`}
>
<div className="space-y-2 border-t border-secondary bg-bg px-4 py-3">