Skip to content

Commit

Permalink
Merge pull request #494 from aws-samples/fix/output-width
Browse files Browse the repository at this point in the history
校正と文書生成で出力が左に偏ってしまうのを修正
  • Loading branch information
wadabee committed May 8, 2024
2 parents c759cc4 + 2b725d2 commit a5b934f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/components/Markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const Markdown: React.FC<Props> = ({ className, prefix, children }) => {
<ReactMarkdown
className={`${
className ?? ''
} prose prose-code:w-1/5 max-w-sm break-all sm:max-w-md md:max-w-2xl lg:max-w-screen-md`}
} prose prose-code:w-1/5 max-w-full break-all`}
children={children}
remarkPlugins={[remarkGfm, remarkBreaks]}
remarkRehypeOptions={{ clobberPrefix: prefix }}
Expand Down

0 comments on commit a5b934f

Please sign in to comment.