Skip to content

Commit 7bff404

Browse files
committed
Fix: code block 관련 누락 코드 추가
1 parent 480602d commit 7bff404

File tree

7 files changed

+509
-68
lines changed

7 files changed

+509
-68
lines changed

app/(blog)/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ export default function BlogLayout({
88
}) {
99
return (
1010
<>
11-
<LeftSidebar className="w-48 xl:w-52 2xl:w-56 lg:shrink-0 lg:sticky h-full lg:top-16 mb-4 lg:mb-0 mt-52" />
11+
<LeftSidebar className="w-60 xl:w-64 2xl:w-72 lg:shrink-0 lg:sticky h-full lg:top-16 mb-4 lg:mb-0 mt-52" />
1212
<div className="xl:max-w-5xl mx-auto rounded-lg w-full overflow-x-hidden p-3 2xl:p-6 h-full">
1313
{children}
1414
</div>
15-
<RightSidebar className="w-48 xl:w-52 2xl:w-56 shrink-0 hidden xl:block sticky top-16 h-full mt-52" />
15+
<RightSidebar className="w-60 xl:w-64 2xl:w-72 shrink-0 hidden xl:block sticky top-16 h-full mt-52" />
1616
</>
1717
);
1818
}

0 commit comments

Comments
 (0)