Last active
October 16, 2019 05:48
-
-
Save frfs/ef9d77f2a2b667d5b09994d5c4e53314 to your computer and use it in GitHub Desktop.
アイコン回すやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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