pi-sdk-web 0.5.12 → 0.5.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/static/style.css +5 -1
- package/package.json +1 -1
package/dist/static/style.css
CHANGED
|
@@ -519,7 +519,11 @@ body {
|
|
|
519
519
|
padding: 0;
|
|
520
520
|
font-size: 0.9em;
|
|
521
521
|
line-height: 1.5;
|
|
522
|
-
|
|
522
|
+
/* Wrap long lines instead of horizontal scrolling (user preference:
|
|
523
|
+
no x-scroll in message content). pre-wrap breaks at spaces;
|
|
524
|
+
overflow-wrap:anywhere also breaks unbroken long tokens (base64 etc). */
|
|
525
|
+
white-space: pre-wrap;
|
|
526
|
+
overflow-wrap: anywhere;
|
|
523
527
|
}
|
|
524
528
|
|
|
525
529
|
.body-text blockquote,
|