From a912a7e1f93ef195b11f3be8b899091812bd8bd4 Mon Sep 17 00:00:00 2001 From: Alexander Kucheryuk <3331946+alexkuc@users.noreply.github.com> Date: Fri, 8 May 2020 13:57:39 +0300 Subject: [PATCH] fix: missing !default in _base.scss #12072 L120 and L200 in the file scss/typography/_base.scss are missing `!default` --- scss/typography/_base.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/typography/_base.scss b/scss/typography/_base.scss index 050b119d0..fe064196b 100644 --- a/scss/typography/_base.scss +++ b/scss/typography/_base.scss @@ -117,7 +117,7 @@ $paragraph-text-rendering: optimizeLegibility !default; /// Use the `.code-inline` component as default for `` elements. /// @type Boolean -$enable-code-inline: true; +$enable-code-inline: true !default; /// Default color for links. /// @type Color @@ -197,7 +197,7 @@ $blockquote-border: 1px solid $medium-gray !default; /// Use the `.cite-block` component as default for `` elements. /// @type Boolean -$enable-cite-block: true; +$enable-cite-block: true !default; /// Font family for `` elements. /// @type String | List -- 2.47.2