assets/scss/2-modules/_loader.scss in kcc-gem-theme-2.11.1 vs assets/scss/2-modules/_loader.scss in kcc-gem-theme-2.12.0

- old
+ new

@@ -5,5 +5,21 @@ &__img { height: 100px; width: 100px; } } + +@keyframes spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(-360deg); + } +} + +.loader__sync--animate { + animation-name: spin; + animation-duration: 2s; + animation-iteration-count: infinite; + transform-origin: center; +}