Skip to content

Commit

Permalink
added more overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Mar 31, 2024
1 parent d69677d commit d56c9f4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/@auth/(.)contacts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export default function Page() {
<TextGenerateEffect words='Contacts'></TextGenerateEffect>
</DrawerTitle>
</DrawerHeader>
<Card style={{ border: '0px' }}>
<CardContent className='border-0 border-none'>
<Card className='bg-transparent' style={{ border: '0px' }}>
<CardContent className='border-0 border-none bg-transparent'>
<div className='space-y-6'>
{contactsState.length > 0 ? (
<>
Expand Down
4 changes: 2 additions & 2 deletions src/app/transactions/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default function Page() {
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className='from-background to bg-accent/80 absolute z-50 min-h-screen w-full overflow-hidden bg-gradient-to-br text-xl backdrop-blur-xl'
className='from-background to bg-accent/80 h-screen w-full overflow-y-scroll bg-gradient-to-br text-xl backdrop-blur-xl'
>
<Card style={{ border: '0px' }} className='bg-transparent'>
<CardHeader>
Expand All @@ -129,7 +129,7 @@ export default function Page() {
<div className='ml-auto'></div>
</CardTitle>
</CardHeader>
<CardContent className='border-0 border-none'>
<CardContent className='border-0 border-none pb-16'>
<motion.div>
{showTxs && (
<>
Expand Down
4 changes: 4 additions & 0 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
-webkit-backdrop-filter: blur(100px) ;
} */

body {
touch-action: none;
}

html {
background-color: #020817;
}
Expand Down

0 comments on commit d56c9f4

Please sign in to comment.