We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8e3a417 + 194df63 commit d1ae050Copy full SHA for d1ae050
packages/mini-editor/src/code.tsx
@@ -225,6 +225,7 @@ function Line({ line }: { line: CodeLine }) {
225
{token}
226
</span>
227
))}
228
+ <br />
229
</div>
230
)
231
}
@@ -287,6 +288,7 @@ function ColumnedLine({
287
288
289
290
)}
291
292
293
294
packages/smooth-lines/src/lines.tsx
@@ -81,6 +81,7 @@ function LineContainer({
81
transform: `translate(${dx}px, ${dy}px)`,
82
opacity,
83
width,
84
+ display: opacity <= 0 ? "none" : undefined,
85
}}
86
>
87
{children}
0 commit comments