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 64ac21b commit 6131aa4Copy full SHA for 6131aa4
frontend/components/CodeEditor.tsx
@@ -192,10 +192,10 @@ export function CodeEditor({
192
<span
193
ref={refLineNumbers}
194
className={
195
- "line-number-rows font-mono absolute pointer-events-none text-default-500 top-0 left-1 " +
+ "line-number-rows font-mono absolute pointer-events-none text-default-500 top-0 left-1 overflow-hidden " +
196
`border-solid border-default-300 border-r-1 ${tst}`
197
}
198
- style={{ height: `${heightPx}px`, overflow: "hidden" }}
+ style={{ height: `${heightPx}px` }}
199
>
200
{Array.from({ length: lineCount }, (_, idx) => {
201
return <span key={idx} />
0 commit comments