We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d07922e commit 493482fCopy full SHA for 493482f
src/styles/text-styles.scss
@@ -37,6 +37,12 @@
37
38
:root {
39
font-family: var(--pfp-font-family);
40
+
41
+ // Prevent long text from overflowing if there are no acceptable break points
42
+ // (this is necessary as Chrome/etc have different text wrap behavior)
43
+ // https://github.com/playfulprogramming/playfulprogramming/issues/1213
44
+ // https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap
45
+ overflow-wrap: break-word;
46
}
47
48
:where(.text-style-headline-1) {
0 commit comments