carnet layout

This commit is contained in:
alma 2025-04-20 16:26:02 +02:00
parent 00a4f4d299
commit af80e771e5

View File

@ -153,7 +153,9 @@ export default function CarnetPage() {
} }
return ( return (
<main className="flex h-[calc(100vh-3.5rem)] mt-14 bg-carnet-bg"> <main className="w-full h-screen bg-black">
<div className="w-full h-full px-4 pt-12 pb-4">
<div className="flex h-full bg-carnet-bg">
{/* Navigation Panel */} {/* Navigation Panel */}
{showNav && ( {showNav && (
<> <>
@ -221,6 +223,8 @@ export default function CarnetPage() {
</button> </button>
</div> </div>
)} )}
</div>
</div>
</main> </main>
); );
} }