:local(.spinner)
  display: inline-block
  // Origin has been selected experimentally for least wobbling during animation.
  // transform-origin: 50% 50%;
  animation-name: rotate
  animation-duration: 1s
  animation-iteration-count: infinite
  animation-timing-function: linear

@keyframes rotate {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}
