aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-03-17 18:38:17 +0100
committerVolpeon <git@volpeon.ink>2021-03-17 18:38:17 +0100
commitb7e1162b967af3b078ac99cc7b6ae201e14b3720 (patch)
tree653571419d4f0f948fe3f63967fda44c8c4da190
parentFix (diff)
downloadiro-sass-b7e1162b967af3b078ac99cc7b6ae201e14b3720.tar.gz
iro-sass-b7e1162b967af3b078ac99cc7b6ae201e14b3720.tar.bz2
iro-sass-b7e1162b967af3b078ac99cc7b6ae201e14b3720.zip
Fix
-rw-r--r--src/_props.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_props.scss b/src/_props.scss
index 973d6b2..1bdef2a 100644
--- a/src/_props.scss
+++ b/src/_props.scss
@@ -320,7 +320,7 @@ $iro-props-namespace-context-id: 'namespace' !default;
320@mixin iro-props-assign-internal($map, $prefix: '', $ref-depth: $iro-props-native-assing-max-depth) { 320@mixin iro-props-assign-internal($map, $prefix: '', $ref-depth: $iro-props-native-assing-max-depth) {
321 @each $key, $value in $map { 321 @each $key, $value in $map {
322 $rd: $ref-depth; 322 $rd: $ref-depth;
323 @if type-of($value) == list and length($list) > 0 and nth($value, 1) == 'iro-prop-ref' { 323 @if type-of($value) == list and length($value) > 0 and nth($value, 1) == 'iro-prop-ref' {
324 @if $ref-depth != 0 { 324 @if $ref-depth != 0 {
325 $rd: $rd - 1; 325 $rd: $rd - 1;
326 @if length($value) == 2 { 326 @if length($value) == 2 {