Skip to content

Commit

Permalink
Merge pull request #2027 from ethereum/fix-cursor
Browse files Browse the repository at this point in the history
Remove border for correct cursor position
  • Loading branch information
ioedeveloper authored Feb 2, 2022
2 parents a481499 + 243c56d commit d1c577f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/remix-ui/editor/src/lib/remix-ui-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}`
}
})
}
Expand Down

0 comments on commit d1c577f

Please sign in to comment.