fix: app page layout

This commit is contained in:
2026-03-01 12:14:55 +01:00
parent dc638ac4d3
commit 2abbdf407f
9 changed files with 11 additions and 13 deletions

View File

@@ -8,11 +8,9 @@ interface AppPageProps {
export function AppPage({ children, className }: AppPageProps) {
return (
<div className={cn('min-h-screen', className)}>
<div className="max-w-7xl mx-auto px-6 lg:px-8 animate-fade-in">
<div className="py-8">
{children}
</div>
<div className={cn('overflow-y-auto', className)}>
<div className="max-w-7xl mx-auto px-6 lg:px-8 animate-fade-in py-6 lg:py-8">
{children}
</div>
</div>
);