Skip to content

Commit

Permalink
fix: remove snapping on area page map (#1109)
Browse files Browse the repository at this point in the history
* fix: remove snapping on area page map
  • Loading branch information
btmccord authored Mar 1, 2024
1 parent 597f7fb commit f2888ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(default)/components/ui/AreaPageContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const AreaPageContainer: React.FC<{
{breadcrumbs == null ? <BreadCrumbsSkeleton /> : breadcrumbs}
{children == null ? <ContentSkeleton /> : children}
</div>
<div id='map' className='w-full mt-16 relative h-[90vh] border-t snap-start snap-normal'>
<div id='map' className='w-full mt-16 relative h-[90vh] border-t'>
{map != null && map}
</div>
</article>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(default)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function RootLayout ({
children: React.ReactNode
}): any {
return (
<html lang='en' className='snap-proximity snap-y scroll-smooth'>
<html lang='en' className='scroll-smooth'>
<body className='relative'>
<NextAuthProvider>
<Header />
Expand Down

0 comments on commit f2888ee

Please sign in to comment.