Skip to content

Commit

Permalink
Fix blog layout cols
Browse files Browse the repository at this point in the history
  • Loading branch information
deadrime committed Feb 18, 2024
1 parent 5819c05 commit 1cf6893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/blog/[slug]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default async function Layout({ children, params }: ArticleLayoutProps) {
<div className={classNames(styles.blogContent, 'md:col-span-8')} id="content">
{children}
</div>
<aside className="md:col-start-10 md:col-span-2 md:sticky top-4 self-start shrink-0 order-first md:order-last">
<aside className="md:col-start-10 md:col-end-13 md:sticky top-4 self-start shrink-0 order-first md:order-last">
<TableOfContent contentId="content" />
</aside>
</div>
Expand Down

0 comments on commit 1cf6893

Please sign in to comment.