From 86c74eb66da2e41412358097bbda596eac9d07d5 Mon Sep 17 00:00:00 2001 From: Marcel Necker <23346048+marcel-necker@users.noreply.github.com> Date: Wed, 2 Nov 2022 12:17:34 +0100 Subject: [PATCH] bugfix: remove ambiguous unary operator Since Dart-Sass Release Version 1.55.0 there is an Strict Unary Operator Warning for ambiguous use Add a space after - to clarify that it's meant to be a binary operation, or wrap it in parentheses to make it a unary operation. This will be an error in future versions of Sass. --- .../Yves/ShopUi/Theme/default/styles/basics/_grid.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SprykerShop/Yves/ShopUi/Theme/default/styles/basics/_grid.scss b/src/SprykerShop/Yves/ShopUi/Theme/default/styles/basics/_grid.scss index a59221ff..bccfca0d 100644 --- a/src/SprykerShop/Yves/ShopUi/Theme/default/styles/basics/_grid.scss +++ b/src/SprykerShop/Yves/ShopUi/Theme/default/styles/basics/_grid.scss @@ -134,7 +134,7 @@ } &--with-gutter { - margin: 0 -$setting-grid-gutter; + margin: 0 - $setting-grid-gutter; } &.container {