fix: app page layout
This commit is contained in:
@@ -96,7 +96,7 @@ export function AnimationEditor() {
|
|||||||
{/* ── Main layout ─────────────────────────────────────── */}
|
{/* ── Main layout ─────────────────────────────────────── */}
|
||||||
<div
|
<div
|
||||||
className="grid grid-cols-1 lg:grid-cols-5 gap-4"
|
className="grid grid-cols-1 lg:grid-cols-5 gap-4"
|
||||||
style={{ height: 'calc(100svh - 220px)', minHeight: '660px' }}
|
style={{ height: 'calc(100svh - 220px)', minHeight: '620px' }}
|
||||||
>
|
>
|
||||||
|
|
||||||
{/* Left: Settings + Properties */}
|
{/* Left: Settings + Properties */}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ interface AppPageProps {
|
|||||||
|
|
||||||
export function AppPage({ children, className }: AppPageProps) {
|
export function AppPage({ children, className }: AppPageProps) {
|
||||||
return (
|
return (
|
||||||
<div className={cn('min-h-screen', className)}>
|
<div className={cn('overflow-y-auto', className)}>
|
||||||
<div className="max-w-7xl mx-auto px-6 lg:px-8 animate-fade-in">
|
<div className="max-w-7xl mx-auto px-6 lg:px-8 animate-fade-in">
|
||||||
<div className="py-8">
|
<div className="py-8">
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
Reference in New Issue
Block a user