Skip to content

Commit

Permalink
feat: address overflow resolved [Fixes #14092]"
Browse files Browse the repository at this point in the history
  • Loading branch information
Signor1 authored Oct 29, 2024
1 parent c45166d commit 160f3eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/Tutorial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Heading4 = (props: HTMLAttributes<HTMLHeadingElement>) => (
)

const Paragraph = (props: HTMLAttributes<HTMLParagraphElement>) => (
<p className="mx-0 mb-4 mt-8" {...props} />
<p className="mx-0 mb-4 mt-8 break-words" {...props} />
)

const KBD = (props: HTMLAttributes<HTMLElement>) => (
Expand Down

0 comments on commit 160f3eb

Please sign in to comment.