You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vizality/renderer/src/styles/utils/functions/_map-merge-all.scss

8 lines
171 B

@function map-merge-all($maps...) {
$collection: ();
@each $map in $maps {
$collection: non-destructive-map-merge($collection, $map);
}
@return $collection;
}