Skip to content

Commit

Permalink
fix: removed x-overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
not-ani committed Aug 5, 2024
1 parent df35dce commit c695f4e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 1 addition & 3 deletions apps/website/src/app/(marketing)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ export default function Layout({
<div className="absolute inset-0 -z-10 h-screen w-full bg-white bg-[linear-gradient(to_right,#f0f0f0_1px,transparent_1px),linear-gradient(to_bottom,#f0f0f0_1px,transparent_1px)] bg-[size:6rem_4rem]">
<div className="h-screenscreen absolute bottom-0 left-0 right-0 top-0 bg-[radial-gradient(circle_800px_at_100%_200px,#d5c5ff,transparent)]">
<Header />
<main className="container mx-auto overflow-hidden px-4 md:overflow-visible ">
{children}
</main>
<main className="container overflow-hidden ">{children}</main>
<Footer />
{modal}
</div>
Expand Down
3 changes: 0 additions & 3 deletions apps/website/src/app/(marketing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ export default function Home() {
<div className="flex flex-col">
<Hero />
<HowItWorks />
<div className="overflow-x-hidden pt-3">
<div className="absolute bottom-0 ml-[-50%] mt-[100px] h-[20px] w-[200%] rounded-t-[100%] bg-white"></div>
</div>
<Projects />
<WhatMakesUsDiffrent />
<Testimonials />
Expand Down

0 comments on commit c695f4e

Please sign in to comment.