Skip to content

Commit 87802b0

Browse files
authored
core: Fix responsivity issue #802 (#1329)
Enabling responsive design on smaller screens by adding the `word-break` CSS property. ## References Fixes #802
1 parent 17374be commit 87802b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mdx/components.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export const UnorderedList = styled.ul`
179179
}
180180
181181
li {
182-
word-wrap: break-all;
182+
word-break: break-all;
183183
}
184184
185185
li > p {

0 commit comments

Comments
 (0)