Skip to content

Commit

Permalink
removed fragments
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Apr 24, 2024
1 parent 087f832 commit 22251d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/ui/VaulDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ export function VaulDrawer({children}) {
/>
<Drawer.Content className='from-background to bg-background/60 fixed bottom-0 left-0 right-0 z-50 mt-24 flex h-[96%] flex-col rounded-t-[10px] bg-gradient-to-t backdrop-blur-2xl'>

<>

<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className='overflow-auto'
className='overflow-auto h-full'
transition={{ duration: 0.5, ease: 'easeInOut', delay: 0.2 }}
>
{children}
</motion.div>
</>


</Drawer.Content>
</Drawer.Portal>
Expand Down

0 comments on commit 22251d6

Please sign in to comment.