diff options
author | Volpeon <git@volpeon.ink> | 2024-06-21 09:21:10 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-06-21 09:21:10 +0200 |
commit | 4da77a44c8d831365582bd81599e15d95b2d432f (patch) | |
tree | 966e4630fc86c49db7dc5eb73974cd04e326d1ca | |
parent | Fix named viewports (diff) | |
download | iro-sass-4da77a44c8d831365582bd81599e15d95b2d432f.tar.gz iro-sass-4da77a44c8d831365582bd81599e15d95b2d432f.tar.bz2 iro-sass-4da77a44c8d831365582bd81599e15d95b2d432f.zip |
Fix
-rw-r--r-- | src/_props.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_props.scss b/src/_props.scss index 196e2f9..8d84aa1 100644 --- a/src/_props.scss +++ b/src/_props.scss | |||
@@ -300,7 +300,7 @@ $namespace-context-id: 'namespace' !default; | |||
300 | /// @param {string} $root [()] - Sub-tree to use for assignment | 300 | /// @param {string} $root [()] - Sub-tree to use for assignment |
301 | /// | 301 | /// |
302 | @mixin assign($tree: $default-tree, $root: (), $skip: (), $prefix: '', $global: false) { | 302 | @mixin assign($tree: $default-tree, $root: (), $skip: (), $prefix: '', $global: false) { |
303 | $map: get-static($root, $tree); | 303 | $map: get-static($root, $tree, $global: $global); |
304 | $map: map-remove($map, $skip...); | 304 | $map: map-remove($map, $skip...); |
305 | 305 | ||
306 | @if type-of($prefix) == list { | 306 | @if type-of($prefix) == list { |