From 1444534080a8c6ef6ba7a2ff74036e61a95d5315 Mon Sep 17 00:00:00 2001 From: JamieMcDonnell Date: Thu, 10 Dec 2020 10:29:35 +0100 Subject: [PATCH] Update classes-wind-degrees.scss MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Module build failed (from ./node_modules/sass-loader/dist/cjs.js): SassError: compound selectors may no longer be extended. Consider `@extend .wi-wind, .towards-0-deg` instead. See http://bit.ly/ExtendCompound for details. ╷ 727 │ @extend .wi-wind.towards-0-deg; │ ^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules/weathericons/sass/icon-classes/classes-wind-degrees.scss 727:11 root stylesheet --- sass/icon-classes/classes-wind-degrees.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sass/icon-classes/classes-wind-degrees.scss b/sass/icon-classes/classes-wind-degrees.scss index bdd7999..b2e5678 100644 --- a/sass/icon-classes/classes-wind-degrees.scss +++ b/sass/icon-classes/classes-wind-degrees.scss @@ -724,5 +724,5 @@ } .wi-wind-towards-n { - @extend .wi-wind.towards-0-deg; -} \ No newline at end of file + @extend .wi-wind, .towards-0-deg; +}