Skip to content

Commit

Permalink
👷 layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Bakhaw committed Jan 7, 2024
1 parent 26b01f8 commit 47f4f36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import SessionProvider from "@/components/SessionProvider";
import "@/app/styles/globals.css";
import "@/app/styles/vinyl.scss";
import "@/app/styles/visualizer.scss";
import { cn } from "@/lib/utils";

const myFont = localFont({
src: [
Expand Down Expand Up @@ -60,7 +61,7 @@ type Props = {
function RootLayout({ children }: Props) {
return (
<html lang="en">
<body className={myFont.className}>
<body className={cn(myFont.className, "overflow-hidden")}>
<SessionProvider>
<Providers>
<Layout>{children}</Layout>
Expand Down
4 changes: 2 additions & 2 deletions app/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ body {
padding: 0;
margin: 0;
border: 2px solid yellow;
height: 100dvh;
overflow: hidden;
/* height: 100dvh; */
/* overflow: hidden; */
}

/* custom scrollbar */
Expand Down

0 comments on commit 47f4f36

Please sign in to comment.