Skip to content

Commit

Permalink
πŸ“ Chore(#47): μ‚¬μš©ν•˜μ§€ μ•ŠλŠ” cn import λ¬Έ 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
sscoderati committed Jun 1, 2024
1 parent 650ed69 commit a7f0871
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import type { Metadata } from "next";
import { Toaster } from "@/components/ui/toaster";
import Favicon from "@/images/favicon.ico";
import QueryProvider from "@/lib/react-query/QueryProvider";
import { cn } from "@/lib/utils";
import "@mdxeditor/editor/style.css";
import { Theme } from "@radix-ui/themes";
import "@radix-ui/themes/styles.css";
Expand Down Expand Up @@ -31,7 +30,7 @@ const RootLayout = ({ children }: { children: React.ReactNode }) => {
<QueryProvider>
<Theme>
<div
className={`mobile:w-full mx-auto flex h-screen w-3/4 flex-col items-center px-20`}
className={`mx-auto flex h-screen w-3/4 flex-col items-center px-20 mobile:w-full`}
>
<AppBar />
<div className="pb-100 md:pb-30">{children}</div>
Expand Down

0 comments on commit a7f0871

Please sign in to comment.