From 387c7acc554b4830f347375d51da067d1ec88dd2 Mon Sep 17 00:00:00 2001 From: Chen-I Lim <46905241+chenilim@users.noreply.github.com> Date: Wed, 15 Dec 2021 15:04:11 -0800 Subject: [PATCH] Fix #1992. Remove borders around code block lines. (#1993) * Fix #1992. Remove borders around code block lines. * Update webapp/src/components/markdownEditorInput/markdownEditorInput.scss Co-authored-by: Doug Lauder Co-authored-by: Doug Lauder --- .../components/markdownEditorInput/markdownEditorInput.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webapp/src/components/markdownEditorInput/markdownEditorInput.scss b/webapp/src/components/markdownEditorInput/markdownEditorInput.scss index 097f0db06..a679a55f9 100644 --- a/webapp/src/components/markdownEditorInput/markdownEditorInput.scss +++ b/webapp/src/components/markdownEditorInput/markdownEditorInput.scss @@ -43,4 +43,9 @@ } } } + + .code-block { + background-color: unset; + border: 0; + } }