fix(App): change header logo to button for better navigation

This commit is contained in:
Jaime Idolpx 2026-06-08 19:47:49 -04:00
parent b854a9922a
commit 754139b14a

View File

@ -207,9 +207,9 @@ function AppPage({ title, onBack }: { title: string; onBack: () => void }) {
<Toaster position="top-center" />
<header className="bg-[#4d4d4d] px-0 py-0 flex-shrink-0" style={{ paddingTop: 'env(safe-area-inset-top)' }}>
<div className="flex items-stretch justify-between min-h-[56px]">
<div className="flex items-center h-full">
<button onClick={() => setCurrentPage('status')} className="flex items-center h-full">
<img src={logoSvg} alt="Meatloaf" className="h-full max-h-[56px] w-auto object-contain" />
</div>
</button>
<div className="flex items-center gap-3">
<button
onClick={toggleFullscreen}