Skip to content

Commit 5ce7088

Browse files
authored
Merge pull request #26 from DeveloperBlog-Devflow/feature/layout
fix: 사이드바와 메인 콘텐츠 겹침 오류 수정
2 parents f3622ad + c618d65 commit 5ce7088

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/(with-sidebar)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function SidebarLayout({
88
return (
99
<div className="flex">
1010
<Sidebar />
11-
<main className="bg-background flex-1">{children}</main>
11+
<main className="bg-background flex-1 pl-48">{children}</main>
1212
</div>
1313
);
1414
}

0 commit comments

Comments
 (0)