Merge pull request #2027 from ethereum/fix-cursor

Remove border for correct cursor position
pull/2026/head^2
David Disu 3 years ago committed by GitHub
commit d1c577fc15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      libs/remix-ui/editor/src/lib/remix-ui-editor.tsx

@ -264,7 +264,7 @@ export const EditorUI = (props: EditorUIProps) => {
range: new monacoRef.current.Range(marker.position.start.line + 1, marker.position.start.column + 1, marker.position.end.line + 1, marker.position.end.column + 1),
options: {
isWholeLine,
inlineClassName: `alert-info highlightLine${marker.position.start.line + 1}`
inlineClassName: `alert-info border-0 highlightLine${marker.position.start.line + 1}`
}
})
}

Loading…
Cancel
Save