From 336ad1724006c1dfd6ce86e5cd07828ff23bc763 Mon Sep 17 00:00:00 2001 From: ishikabhoyar Date: Thu, 30 Oct 2025 23:10:43 +0530 Subject: [PATCH] remove active line border from Monaco Editor --- Frontend/src/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Frontend/src/index.css b/Frontend/src/index.css index 909b474..ea8d58a 100644 --- a/Frontend/src/index.css +++ b/Frontend/src/index.css @@ -1521,6 +1521,15 @@ body { overflow: hidden; } +/* Remove Monaco Editor active line border */ +.editor-container .monaco-editor .view-overlays .current-line { + border: none !important; +} + +.editor-container .monaco-editor .margin-view-overlays .current-line { + border: none !important; +} + .test-cases-section { margin-top: 16px; }