Skip to content

Commit 160f3eb

Browse files
authored
feat: address overflow resolved [Fixes #14092]"
1 parent c45166d commit 160f3eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layouts/Tutorial.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const Heading4 = (props: HTMLAttributes<HTMLHeadingElement>) => (
5858
)
5959

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

6464
const KBD = (props: HTMLAttributes<HTMLElement>) => (

0 commit comments

Comments
 (0)