Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ export default function App({ Component, pageProps }: AppProps) {
<ToastProvider>
<InputModalProvider>
<TodoListActionProvider>
<div className="flex h-screen flex-col overflow-y-hidden sm:flex-row">
<div className="flex h-dvh flex-col overflow-y-hidden sm:flex-row">
<Sidebar />

<div className="flex-1 overflow-y-auto">
<Component {...pageProps} />
<NoteDrawer />
<TodoDrawer />
<Toaster />
</div>
</div>
<NoteDrawer />
<TodoDrawer />
<Toaster />
</TodoListActionProvider>
</InputModalProvider>
</ToastProvider>
Expand Down
6 changes: 2 additions & 4 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ import { Head, Html, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="ko">
<Head>
<title>퀘스또</title>
</Head>
<body className="antialiased">
<Head />
<body className="overflow-hidden antialiased">
<Main />
<NextScript />
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ type GoalCreationFormProps = {
export default (function GoalCreationForm({ onSubmit }: GoalCreationFormProps) {
return (
<form
className="box-border flex w-full flex-col gap-2 rounded-lg bg-white text-sm font-medium"
className="box-border flex w-full flex-col gap-2 rounded-lg bg-white"
onSubmit={onSubmit}
>
<Input
placeholder="목표를 입력하세요"
autoFocus
name="title"
className="rounded-[12px]"
className="rounded-[12px] text-base font-medium"
/>
</form>
);
Expand Down