From e78fd961ae14a4b69e181f8c199ea002d2691404 Mon Sep 17 00:00:00 2001 From: iGor milhit Date: Mon, 29 Nov 2021 21:58:21 +0100 Subject: [PATCH] text: set font style to em nested in blockquote * Sets the em font style to normal when it's nested in a blockquote as the blockquote font style is already italic. Co-Authored-by: iGor milhit --- assets/scss/_texts.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/scss/_texts.scss b/assets/scss/_texts.scss index 9567c39..5a28fb2 100644 --- a/assets/scss/_texts.scss +++ b/assets/scss/_texts.scss @@ -45,6 +45,10 @@ margin: .4rem 0; } + em { + font-style: normal; + } + figcaption { text-align: right; margin-top: 1rem;