From ac5d4088595ea93a4ea5de0d99519409779f3871 Mon Sep 17 00:00:00 2001 From: Asaad Mahmood Date: Wed, 12 Jan 2022 00:00:01 +0500 Subject: [PATCH] GH-1960 - Fixing link color on card (Personal Server) (#2087) * Fixing link color on card (Personal Server) * Updating UI * Updating css --- webapp/src/components/markdownEditor.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/webapp/src/components/markdownEditor.scss b/webapp/src/components/markdownEditor.scss index 978e0d375..ea214c793 100644 --- a/webapp/src/components/markdownEditor.scss +++ b/webapp/src/components/markdownEditor.scss @@ -1,5 +1,13 @@ /* Markdown Editor */ +.product-wrapper { + .octo-editor-preview { + a { + color: rgba(var(--link-color-rgb), 1); + } + } +} + .MarkdownEditor { cursor: text; @@ -13,8 +21,6 @@ .octo-editor-preview { a { - color: rgba(var(--link-color-rgb), 1); - &:hover { text-decoration: underline; }