Created
November 11, 2016 17:51
-
-
Save mauricedb/728af0f4a916b630f20a443399d03567 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
.glyphicon.spinning { | |
animation: spin 1s infinite linear; | |
} | |
@keyframes spin { | |
from { transform: scale(1) rotate(0deg); } | |
to { transform: scale(1) rotate(360deg); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment