feat: enhance Sidebar with toggle functionality and improve layout; update StorageRow and Inventory components for better styling; add new translations for quick product details

This commit is contained in:
2026-06-04 00:28:09 +02:00
parent 2a7f411834
commit 53efd21a2b
8 changed files with 200 additions and 108 deletions
+2 -2
View File
@@ -7,9 +7,9 @@ export const Route = createFileRoute("/app/_hiddenLayout")({
function AppLayout() {
return (
<div className="flex min-h-screen w-full bg-[#f7f9fc]">
<div className="flex min-h-screen w-full flex-col bg-[#f7f9fc] lg:flex-row">
<Sidebar />
<main className="flex-1 px-8 py-6">
<main className="flex-1 px-4 py-5 sm:px-6 lg:px-8 lg:py-6">
<Outlet />
</main>
</div>