Skip to content

Instantly share code, notes, and snippets.

@frfs
Last active October 16, 2019 05:48
Show Gist options
  • Save frfs/ef9d77f2a2b667d5b09994d5c4e53314 to your computer and use it in GitHub Desktop.
Save frfs/ef9d77f2a2b667d5b09994d5c4e53314 to your computer and use it in GitHub Desktop.
アイコン回すやつ
.account__avatar, .account__avatar-overlay {
animation: spin 1.5s linear infinite;
}
@keyframes spin {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment