Skip to content

Commit

Permalink
refactor: scroll-smooth is already included in tailwind config
Browse files Browse the repository at this point in the history
  • Loading branch information
tszhong0411 committed Jan 25, 2025
1 parent 2fe0305 commit 49ca40b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const Layout = (props: LayoutProps) => {
return (
<html
lang='en-US'
className={cn(GeistSans.variable, GeistMono.variable, 'scroll-smooth')}
className={cn(GeistSans.variable, GeistMono.variable)}
suppressHydrationWarning
>
<body>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/app/[locale]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const Layout = async (props: LayoutProps) => {
return (
<html
lang={locale}
className={cn(GeistSans.variable, GeistMono.variable, 'scroll-smooth')}
className={cn(GeistSans.variable, GeistMono.variable)}
suppressHydrationWarning
>
<body className='relative'>
Expand Down

0 comments on commit 49ca40b

Please sign in to comment.