Skip to content

Commit

Permalink
Merge pull request #12195 from ycrepeau/develop
Browse files Browse the repository at this point in the history
Fix issue #12080, !global variable declarations generating warnings with SASSC.
  • Loading branch information
joeworkman committed Aug 24, 2021
2 parents 3c157a9 + b3c62f8 commit 7980aac
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scss/util/_breakpoint.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
/// @group breakpoints
////

////
/// Patch to fix issue #12080

$-zf-size: null;
////

/// A list of named breakpoints. You can use these with the `breakpoint()` mixin to quickly create media queries.
/// @type Map
$breakpoints: (
Expand Down
10 changes: 10 additions & 0 deletions scss/util/_color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@

$contrast-warnings: true !default;

////
/// Patch to fix issue #12080

$primary-color: null;
$secondary-color: null;
$warning-color: null;
$alert-color: null;
$success-color:null;
////

////
/// @group functions
////
Expand Down
5 changes: 5 additions & 0 deletions scss/util/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
/// @group functions
////

////
/// Patch to fix issue #12080
$-zf-pb-value: null;

////
/// Creates an inner box-shadow for only one side
///
/// @param {Keyword} $side - Side the shadow is supposed to appear. Can be `top`, `left`, `right` or `bottom`.
Expand Down

0 comments on commit 7980aac

Please sign in to comment.