Skip to content

Commit 550cbe9

Browse files
authored
Merge pull request #14256 from Signor1/dev
feat: address overflow resolved [Fixes #14092]
2 parents 58194a3 + 160f3eb commit 550cbe9

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)