Skip to content

Commit

Permalink
Bugfix: rotate animation ends at 100% now
Browse files Browse the repository at this point in the history
  • Loading branch information
szynszyliszys committed Mar 7, 2016
1 parent 4c59aa6 commit 2897909
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions demo/css/repaintless.css
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@
-webkit-transform: rotate(-1turn);
transform: rotate(-1turn);
}
50% {
100% {
-webkit-transform: none;
transform: none;
}
Expand All @@ -440,7 +440,7 @@
-webkit-transform: rotate(-1turn);
transform: rotate(-1turn);
}
50% {
100% {
-webkit-transform: none;
transform: none;
}
Expand Down
4 changes: 2 additions & 2 deletions repaintless-css/repaintless.css
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@
-webkit-transform: rotate(-1turn);
transform: rotate(-1turn);
}
50% {
100% {
-webkit-transform: none;
transform: none;
}
Expand All @@ -440,7 +440,7 @@
-webkit-transform: rotate(-1turn);
transform: rotate(-1turn);
}
50% {
100% {
-webkit-transform: none;
transform: none;
}
Expand Down
2 changes: 1 addition & 1 deletion repaintless-css/repaintless.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion repaintless-scss/animations/_rotate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
transform: rotate(-1turn);
}

50% {
100% {
transform: none;
}
}
Expand Down

0 comments on commit 2897909

Please sign in to comment.