Skip to content

Commit

Permalink
Fixed the scrolling issue in js editor in maximized mode (#3769)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanydg authored Feb 23, 2024
1 parent 1cbec28 commit 7ae37ac
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions js/widgets/jseditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,8 @@ class JSEditor {
codeLines.style.fontWeight = "400";
codeLines.style.letterSpacing = "normal";
codeLines.style.lineHeight = "20px";
codeLines.style.background = "rgba(255, 255, 255, 0.1)";
codeLines.style.color = "white";
codeLines.style.setProperty("mix-blend-mode", "difference");
codeLines.style.background = "rgba(255, 255, 255, 0.075)";
codeLines.style.color = "rgba(255, 255, 255, 0.7)";
codeLines.style.textAlign = "right";
editorContainer.appendChild(codeLines);

Expand Down

0 comments on commit 7ae37ac

Please sign in to comment.