Skip to content

Commit

Permalink
fix: remove max-width from prose for guides and overview (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity authored Apr 5, 2024
1 parent d986da3 commit 9cb243b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/app/src/mdx/plugins/rehypeLayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function rehypeFernLayout(props?: PageHeaderProps): (tree: Root, vfile: V
{ class: articleClassName },
header,
aside.length === 0
? h("section", { class: proseClassName }, [...tree.children, footer])
? h("section", { class: cn(proseClassName, "max-w-full") }, [...tree.children, footer])
: [
h(
"div",
Expand Down

0 comments on commit 9cb243b

Please sign in to comment.