mirror of
https://gitlab.com/serenetia/endpild-laman.git
synced 2025-03-15 12:55:54 +08:00
7 lines
171 B
SCSS
7 lines
171 B
SCSS
|
@function StaggeredAnimDelay($baseDelay: 0s, $additionalDelay: 0s) {
|
||
|
@return calc(
|
||
|
#{$baseDelay} +
|
||
|
0.05s * var(--order) + #{$additionalDelay}
|
||
|
);
|
||
|
}
|