jbilcke-hf HF staff commited on
Commit
40e9c34
β€’
1 Parent(s): f854364

fix page scroll

Browse files
Files changed (1) hide show
  1. src/app/studio/[ownerId]/page.tsx +1 -1
src/app/studio/[ownerId]/page.tsx CHANGED
@@ -8,7 +8,7 @@ export default async function StudioPage({ params: { ownerId } }: { params: { ow
8
  <Head>
9
  <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86" />
10
  </Head>
11
- <main className="dark h-screen w-full flex flex-col items-center bg-stone-900 text-stone-100">
12
  <Main ownerId={`${ownerId || ""}`} />
13
  </main>
14
  </div>
 
8
  <Head>
9
  <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86" />
10
  </Head>
11
+ <main className="dark fixed inset-0 flex flex-col items-center bg-stone-900 text-stone-10 overflow-y-scroll">
12
  <Main ownerId={`${ownerId || ""}`} />
13
  </main>
14
  </div>