File size: 568 Bytes
75fefa7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.logocloud-items {
  animation: logocloud-items 100s infinite linear;
  will-change: transform;
}

@keyframes logocloud-items {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Allow this component to animate even when the user prefers reduced motion.
   This is a narrowly scoped opt-in to avoid disabling all animations globally. */
@media (prefers-reduced-motion: reduce) {
  [data-allow-motion="true"] .logocloud-items {
    animation-duration: 100s !important;
    animation-iteration-count: infinite !important;
  }
}