Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue #12080, !global variable declarations generating warnings with SASSC. #12195

Merged
merged 8 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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