Skip to content

Instantly share code, notes, and snippets.

@mauricedb
Created November 11, 2016 17:51
Show Gist options
  • Save mauricedb/728af0f4a916b630f20a443399d03567 to your computer and use it in GitHub Desktop.
Save mauricedb/728af0f4a916b630f20a443399d03567 to your computer and use it in GitHub Desktop.
.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