aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/_props.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/_props.scss b/src/_props.scss
index c61fd6b..5099ab2 100644
--- a/src/_props.scss
+++ b/src/_props.scss
@@ -98,7 +98,13 @@
98 } 98 }
99 } @else if meta.type-of($ref) == 'list' { 99 } @else if meta.type-of($ref) == 'list' {
100 @each $r in $ref { 100 @each $r in $ref {
101 @include materialize($r, $match-meta); 101 $name: list.nth($r, 2);
102 $value: get(list.nth($r, 3));
103 $meta: get(list.nth($r, 4));
104
105 @if $meta == $match-meta {
106 @include materialize-helper($name, $value);
107 }
102 } 108 }
103 } 109 }
104} 110}