enzostvs HF staff commited on
Commit
89bca20
1 Parent(s): 4d44f01

overflow xs

Browse files
Files changed (1) hide show
  1. app/page.tsx +2 -2
app/page.tsx CHANGED
@@ -3,7 +3,7 @@ import Image from "next/image";
3
 
4
  export default function Home() {
5
  return (
6
- <section className="h-screen p-12 lg:p-24 bg-stone-950 relative z-[1] overflow-auto">
7
  <Form>
8
  <header>
9
  <h1 className="text-white font-bold text-3xl">
@@ -15,7 +15,7 @@ export default function Home() {
15
  </h2>
16
  </header>
17
  </Form>
18
- <div className="w-[400px] h-[400px] bg-gradient-to-br from-amber-300 to-amber-600 absolute left-0 top-0 -z-[1] blur-[230px]" />
19
  </section>
20
  );
21
  }
 
3
 
4
  export default function Home() {
5
  return (
6
+ <section className="h-screen p-12 lg:p-24 bg-stone-950 relative z-[1] overflow-y-auto">
7
  <Form>
8
  <header>
9
  <h1 className="text-white font-bold text-3xl">
 
15
  </h2>
16
  </header>
17
  </Form>
18
+ <div className="w-full lg:w-[400px] h-[400px] bg-gradient-to-br from-amber-300 to-amber-600 absolute left-0 top-0 -z-[1] blur-[150px] lg:blur-[230px]" />
19
  </section>
20
  );
21
  }