/**
 * @name RotateCord
 * @author bep#3399
 * @version 0.1.0
 * @description it spin
*/

@keyframes spinner {
  from {
    transform: rotate3d(1, 0, 0, 0deg   );
  }
  to {
    transform: rotate3d(1, 0, 0, -360deg);
  }
}
.messageContent-2qWWxC, .clickable-1bVtEA {
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 3s
}