forked from andreasbm/weightless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogress-spinner-vars.scss
25 lines (17 loc) · 1.16 KB
/
progress-spinner-vars.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@import "../style/base";
/* Width and height */
$progress-spinner-size: var(--progress-spinner-size, #{size(48)});
/* Color */
$progress-spinner-color: var(--progress-spinner-color, #{color("primary")});
/* Color of the buffer */
$progress-spinner-buffer-color: var(--progress-spinner-buffer-color, #{color("primary", 500, 0.2)});
/* Width of the spinner stroke */
$progress-spinner-stroke-width: var(--progress-spinner-stroke-width, 10%);
/* Transition of the spinner when determinate */
$progress-spinner-determinate-progress-transition: var(--progress-spinner-determinate-progress-transition, stroke-dashoffset #{$transition-linear});
/* Duration of the indeterminate animation for the container */
$progress-spinner-indeterminate-container-duration: var(--progress-spinner-indeterminate-container-duration, 2s);
/* Duration of the indeterminate animation for the spinner */
$progress-spinner-indeterminate-progress-duration: var(--progress-spinner-indeterminate-progress-duration, 4s);
/* Timing function of the indeterminate animation */
$progress-spinner-indeterminate-timing-function: var(--progress-spinner-indeterminate-timing-function, #{$transition-standard-curve});