critique 0.1.6 → 0.1.7
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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/src/ansi-html.ts +4 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/ansi-html.ts
CHANGED
|
@@ -166,14 +166,16 @@ body {
|
|
|
166
166
|
box-sizing: border-box;
|
|
167
167
|
}
|
|
168
168
|
.line {
|
|
169
|
-
white-space: pre;
|
|
169
|
+
white-space: pre-wrap;
|
|
170
|
+
word-break: break-all;
|
|
170
171
|
display: flex;
|
|
172
|
+
flex-wrap: wrap;
|
|
171
173
|
content-visibility: auto;
|
|
172
174
|
contain-intrinsic-block-size: auto 1lh;
|
|
173
175
|
background-color: ${backgroundColor};
|
|
174
176
|
}
|
|
175
177
|
.line span {
|
|
176
|
-
white-space: pre;
|
|
178
|
+
white-space: pre-wrap;
|
|
177
179
|
}
|
|
178
180
|
</style>
|
|
179
181
|
</head>
|