I have problem with sass code...
@for $i from 1 through 3 {
&:nth-child(#{$i}) {
transition: all (0.2*$i)s ease;
}
}
its compiled like this
label p:nth-child(1) {
transition: all 0.2 s ease;
}
label p:nth-child(2) {
transition: all 0.4 s ease;
}
label p:nth-child(3) {
transition: all 0.6 s ease;
}
Need to remove space after time
thanx