feat: enhance Sidebar and TransactionTable components with improved accessibility and layout adjustments; add SheetTitle for navigation context and refine padding and width for better responsiveness

This commit is contained in:
Julien Froidefond
2025-12-21 13:25:27 +01:00
parent 82e27524b5
commit 2887a6a750
3 changed files with 22 additions and 20 deletions

View File

@@ -18,7 +18,7 @@ export function PageLayout({ children }: PageLayoutProps) {
<div className="flex h-screen bg-background overflow-hidden page-background">
<Sidebar open={sidebarOpen} onOpenChange={setSidebarOpen} />
<main className="flex-1 overflow-auto overflow-x-hidden page-content">
<div className="p-6 md:p-8 lg:p-10 space-y-6 md:space-y-8 max-w-full">
<div className="p-3 md:p-8 lg:p-10 space-y-4 md:space-y-8 max-w-full">
{children}
</div>
</main>