Skip to content

Commit

Permalink
overflow fix in tnc and Privacy Policy Page
Browse files Browse the repository at this point in the history
  • Loading branch information
C0dewithLokesh committed Feb 25, 2024
1 parent 7ba3034 commit 57aca65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/(marketing)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React from 'react';

const MarketingLayout = ({ children }: { children: React.ReactNode }) => {
return (
<div>
<main className="pt-36 pb-20">{children}</main>
</div>
<main className="pt-36 pb-20 h-full overflow-y-auto no-scrollbar">
{children}
</main>
);
};

Expand Down

0 comments on commit 57aca65

Please sign in to comment.