mirror of
https://github.com/prymitive/karma
synced 2026-08-23 11:56:20 +00:00
fix(ui): fix sass warnings
This commit is contained in:
committed by
Łukasz Mierzwa
parent
0db337a128
commit
3913e944ea
@@ -62,7 +62,7 @@ $pixSize: math.div($fetcherWidth, 5);
|
||||
}
|
||||
|
||||
$tx: (($pixSize * 2) * $num);
|
||||
$ty: (($pixSize * 2) * (floor(($i - 1)/3)));
|
||||
$ty: (($pixSize * 2) * (floor(math.div(($i - 1), 3))));
|
||||
|
||||
&:nth-of-type(#{$i}) {
|
||||
transform: translate($tx, $ty);
|
||||
|
||||
Reference in New Issue
Block a user