Rotate 360

global.css
.rotate-360 {
  animation: rotate-360 1s linear both;
}

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

Based on @Ibelick

Designed with ♥ by @AdrianGerman