aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2024-10-19 10:19:42 +0200
committerVolpeon <git@volpeon.ink>2024-10-19 10:19:42 +0200
commit8868a6bcf1573b8e22c2e1bb3063f65734f7c9ff (patch)
treebcc2c641d1eae2bfdb0800875f6860975d2aebfb /src
parentFix (diff)
downloadiro-sass-8868a6bcf1573b8e22c2e1bb3063f65734f7c9ff.tar.gz
iro-sass-8868a6bcf1573b8e22c2e1bb3063f65734f7c9ff.tar.bz2
iro-sass-8868a6bcf1573b8e22c2e1bb3063f65734f7c9ff.zip
Fix
Diffstat (limited to 'src')
-rw-r--r--src/_props.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/_props.scss b/src/_props.scss
index 66a1d85..5682611 100644
--- a/src/_props.scss
+++ b/src/_props.scss
@@ -93,7 +93,7 @@
93 $value: get(list.nth($ref, 3)); 93 $value: get(list.nth($ref, 3));
94 $meta: get(list.nth($ref, 4)); 94 $meta: get(list.nth($ref, 4));
95 95
96 @if $match-meta != nil and $meta == $match-meta { 96 @if $match-meta == nil or $meta == $match-meta {
97 @include materialize-helper($name, $value); 97 @include materialize-helper($name, $value);
98 } 98 }
99 } @else if meta.type-of($ref) == 'list' { 99 } @else if meta.type-of($ref) == 'list' {
@@ -103,7 +103,7 @@
103 $value: get(list.nth($r, 3)); 103 $value: get(list.nth($r, 3));
104 $meta: get(list.nth($r, 4)); 104 $meta: get(list.nth($r, 4));
105 105
106 @if $match-meta != nil and $meta == $match-meta { 106 @if $match-meta == nil or $meta == $match-meta {
107 @include materialize-helper($name, $value); 107 @include materialize-helper($name, $value);
108 } 108 }
109 } 109 }