Skip to content
Snippets Groups Projects
Commit 9b514897 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

got rid of scss error

parent 43ec90ec
No related branches found
No related tags found
No related merge requests found
Pipeline #389893 failed
......@@ -3,7 +3,7 @@ $background: #E4FFF7;
@function textShadow($precision, $size, $color){
$value: null;
$offset: 0;
$length: $size * (1 / $precision) - 1;
$length: $size * calc(1 / $precision) - 1;
@for $i from 0 through $length {
$offset: $offset + $precision;
......@@ -100,7 +100,7 @@ $background: #E4FFF7;
@for $item from 1 through 21 {
span:nth-of-type(#{$item}){
animation-delay: #{(3 + ($item/10))}s;
animation-delay: #{(3 + (calc($item / 10)))}s;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment