Skip to content

Commit

Permalink
fix: add default to color init
Browse files Browse the repository at this point in the history
  • Loading branch information
joeworkman committed Sep 27, 2021
1 parent 9211c6b commit 5f4afb9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scss/util/_color.scss
Expand Up @@ -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;
////

////
Expand Down

0 comments on commit 5f4afb9

Please sign in to comment.