From 24de7dd6d0ea11c6e90f15c2e03aeb8c9e0f167a Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 27 Sep 2021 09:36:20 -0700 Subject: [PATCH] fix: add default to color init fixes #12278 #12259 --- scss/util/_color.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scss/util/_color.scss b/scss/util/_color.scss index 262ed4174..18e2b5f5b 100644 --- a/scss/util/_color.scss +++ b/scss/util/_color.scss @@ -9,11 +9,11 @@ $contrast-warnings: true !default; //// /// Patch to fix issue #12080 -$primary-color: null; -$secondary-color: null; -$warning-color: null; -$alert-color: null; -$success-color:null; +$primary-color : null !default; +$secondary-color : null !default; +$warning-color : null !default; +$alert-color : null !default; +$success-color : null !default; //// //// -- 2.47.2