From e20e9a1a94090b263746acf475a1212522c6f9fa Mon Sep 17 00:00:00 2001 From: Volpeon Date: Fri, 26 Nov 2021 15:40:04 +0100 Subject: Fix empty map check for Dart Sass --- src/_props.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_props.scss b/src/_props.scss index 1bdef2a..efc3eea 100644 --- a/src/_props.scss +++ b/src/_props.scss @@ -332,7 +332,7 @@ $iro-props-namespace-context-id: 'namespace' !default; $value: null; } } - @if type-of($value) != map { + @if type-of($value) != map and $value != () { #{$prefix + $key}: #{$value}; } @else { @include iro-props-assign-internal($value, $prefix + $key, $rd); -- cgit v1.2.3-54-g00ecf