File size: 798 Bytes
31cf797
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9308228
 
31cf797
 
9308228
31cf797
 
 
 
 
9308228
31cf797
 
 
 
 
 
 
 
 
 
9308228
31cf797
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@keyframes dw-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dw-spinner {
  display: inline-block;
  box-sizing: border-box;
  flex-shrink: 0;
  border: 2px solid currentColor;
  border-top-color: transparent !important;
  border-right-color: currentColor;
  border-bottom-color: currentColor;
  border-left-color: currentColor;
  border-radius: 50% !important;
  opacity: 0.85;
  animation: dw-spin 0.75s linear infinite !important;
  vertical-align: middle;
  transform-origin: center center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .dw-spinner {
    animation: dw-spin 1.2s linear infinite !important;
  }
}