From 9b5148976a38f2993e4a062b90a36a742a4f76b0 Mon Sep 17 00:00:00 2001 From: liliana <liliana.sanfilippo@uni-bielefeld.de> Date: Fri, 5 Jul 2024 15:34:44 +0200 Subject: [PATCH] got rid of scss error --- src/App/App.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/App.scss b/src/App/App.scss index 5c80a0ca..7ebe7ff8 100644 --- a/src/App/App.scss +++ b/src/App/App.scss @@ -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; } } -- GitLab