Skip to content

Commit

Permalink
css animations fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
moldcraft committed May 18, 2016
1 parent d49a65c commit 7fa5c26
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions framework/static/css/fw.css
Original file line number Diff line number Diff line change
Expand Up @@ -2703,8 +2703,8 @@ a.fw-wp-link:hover {
@-webkit-keyframes fwDropIn {
0% {
opacity: 0;
-webkit-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
}

Expand All @@ -2719,15 +2719,15 @@ a.fw-wp-link:hover {
@keyframes fwDropIn {
0% {
opacity: 0;
-webkit-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
}

100% {
opacity: 1;
-webkit-transform: scale(.7);
-ms-transform: scale(.7);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
Expand Down

0 comments on commit 7fa5c26

Please sign in to comment.