Skip to content

Commit

Permalink
Fix spinning in all browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
mwunsch committed Aug 16, 2016
1 parent 6696b9e commit 829b343
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sass/main.scss
Expand Up @@ -142,15 +142,14 @@ body {
@include keyframes(spin) {
0% {
opacity: 0;
@include transform( rotate(-1440deg) scale(0.45) );
@include transform( rotate(1440deg) scale(0.25) );
}

30% {
opacity: 1;
@include transform( scale(1) );
}

100% { @include transform( rotate(0deg) ); }
100% { @include transform( rotate(0deg) scale(1) ); }
}

@include keyframes(fade) {
Expand Down

0 comments on commit 829b343

Please sign in to comment.