From dd6d3ab127a2f73956396877f67ebc1ae34e07ba Mon Sep 17 00:00:00 2001 From: Andrea Dell'Orco Date: Mon, 16 May 2016 11:55:50 +0200 Subject: [PATCH] Fix Each Arguments to For cycle --- stylesheets/_spinners.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stylesheets/_spinners.scss b/stylesheets/_spinners.scss index 9b1f8c3..f444b80 100644 --- a/stylesheets/_spinners.scss +++ b/stylesheets/_spinners.scss @@ -98,7 +98,8 @@ Pass any number of seconds referring to the duration of one full rotation for an // Parse arguments: @if $args { - @each $arg in $args { + @for $i from 1 through length($args) { + $arg: nth($args, $i); @if length($arg) == 1 { @if type-of($arg) == number { @if unit($arg) != "" {