From c5aea3aebcb97c7fbf9029bb67ae623c4dfc9e4e Mon Sep 17 00:00:00 2001 From: Rustie <64870518+woodcox@users.noreply.github.com> Date: Mon, 15 Apr 2024 20:34:28 +0100 Subject: [PATCH] Update _process-collection.scss --- src/generator/workers/_process-collection.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/generator/workers/_process-collection.scss b/src/generator/workers/_process-collection.scss index c6ad6cb..c66019a 100644 --- a/src/generator/workers/_process-collection.scss +++ b/src/generator/workers/_process-collection.scss @@ -33,6 +33,12 @@ @if type-of($collection) == 'list' { // Process each item in the list @debug 'collection:' $collection; + + $items: map-get($collection, 'items'); + $output: map-get($collection, 'output'); + $property: map-get($collection, 'property'); + $use-css-vars: map-get($collection, 'css-vars'); + $converted-map: (); // Initialize an empty map @for $i from 1 through length($collection) { // Iterate through the list $key: nth-or-null($collection, $i); // Get the key