From a8cf68ac4d05217ba349aa9fde0bc56c3da1ca6a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javi=20Mart=C3=ADn?= Date: Sun, 17 Apr 2022 14:04:30 +0200 Subject: [PATCH] fix: typo in $-zf-bp-value name There was a warning when compiling SCSS: DEPRECATION WARNING on line 369 of scss/util/_mixins.scss: !global assignments won't be able to declare new variables in future versions. Consider adding `$-zf-bp-value: null` at the top level The reason was a typo in the assigned variable name, which had "pb" instead of "bp". --- scss/util/_mixins.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index ea191d30c..c71e08493 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -7,7 +7,7 @@ //// // Patch to fix issue #12080 -$-zf-pb-value: null; +$-zf-bp-value: null; /// Creates an inner box-shadow for only one side /// -- 2.47.2