From 07ec685abc106f54a81ab2248fae38f164dc45dd Mon Sep 17 00:00:00 2001 From: amareshsm <30730124+amareshsm@users.noreply.github.com> Date: Sun, 6 Feb 2022 00:16:25 +0530 Subject: [PATCH 1/2] sandpack error icon overlapping issue fix --- beta/src/styles/sandpack.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/beta/src/styles/sandpack.css b/beta/src/styles/sandpack.css index e2a4f032240..3de0e8f310d 100644 --- a/beta/src/styles/sandpack.css +++ b/beta/src/styles/sandpack.css @@ -93,9 +93,6 @@ html.dark .sp-tabs .sp-tab-button[data-active='true'] { } .sp-code-editor .cm-errorLine:after { - position: absolute; - right: 8px; - top: 0; content: '\26A0'; font-size: 22px; line-height: 16px; From 109a65eff2cb85c9bdde93de87ed0ce615852428 Mon Sep 17 00:00:00 2001 From: amareshsm <30730124+amareshsm@users.noreply.github.com> Date: Sun, 6 Feb 2022 17:54:22 +0530 Subject: [PATCH 2/2] modified errorline css --- beta/src/styles/sandpack.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beta/src/styles/sandpack.css b/beta/src/styles/sandpack.css index 3de0e8f310d..d0de1623c55 100644 --- a/beta/src/styles/sandpack.css +++ b/beta/src/styles/sandpack.css @@ -93,6 +93,8 @@ html.dark .sp-tabs .sp-tab-button[data-active='true'] { } .sp-code-editor .cm-errorLine:after { + position: relative; + top: 1px; content: '\26A0'; font-size: 22px; line-height: 16px;