Skip to content

Commit

Permalink
removed overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Mar 31, 2024
1 parent 2571f73 commit 547dda0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default function Page() {
console.log('usdcBalance', usdcBalance);
return (
<AuthPage>
<main className='relative bg-background grid justify-center'>
<main className='relative bg-background grid justify-center overflow-y-auto'>

<div>
{/* <div className='absolute -z-50 '>
Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default function RootLayout({
/>
</head>

<body id='main' className='overflow-hidden'>
<body id='main' className='overflow-y-scroll'>
<ThemeProvider
attribute='class'
defaultTheme='dark'
Expand Down Expand Up @@ -181,7 +181,7 @@ export default function RootLayout({
<WagmiProvider config={config!}>
<QueryClientProvider client={queryClient}>
<LayoutGroup>
<div vaul-drawer-wrapper='' className='min-h-[100vh] overflow-y-scroll'>
<div vaul-drawer-wrapper='' className='min-h-[100vh] overflow-y-scroll relative'>
{auth}
{drawer}

Expand Down
2 changes: 1 addition & 1 deletion src/app/tx/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function Page() {
width: '100vw',
height: '100vh',
}}
className='from-background to bg-accent/80 bg-gradient-to-br backdrop-blur-xl'
className='from-background to bg-accent/80 bg-gradient-to-br backdrop-blur-xl'
>
<div className='grid p-4 '>
<div className='absolute z-50'>
Expand Down

0 comments on commit 547dda0

Please sign in to comment.