From 616398c4fc0d0ca34d9f2f7b42fc311648b741ee Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Wed, 24 Feb 2021 16:12:18 +0700 Subject: [PATCH] added italic text --- src/styles/common/markdown.module.scss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/styles/common/markdown.module.scss b/src/styles/common/markdown.module.scss index e11ba114..024ab1e4 100644 --- a/src/styles/common/markdown.module.scss +++ b/src/styles/common/markdown.module.scss @@ -5,7 +5,7 @@ background-color: darken($comment_bg, 2%); border: { left: 4px solid $red; - right: 4px solid $red; + right: 4px solid $red; } font-family: monospace; font-size: 13px; @@ -61,6 +61,15 @@ } } + strong { + font-weight: bold; + color: white; + } + + em { + font-style: italic; + } + :global(.grey) { color: #555555; white-space: pre-line;