Skip to content

Commit

Permalink
Updated Progress Indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
anhduc130 committed Nov 14, 2016
1 parent 9856722 commit 5272327
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 4 additions & 5 deletions bin/progressIndicatorStyling.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;

}

@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); m }
0% {-webkit-transform: rotate(0deg);}
100% {-webkit-transform: rotate(360deg);}
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
4 changes: 3 additions & 1 deletion src/components/ProgressIndicator.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import React from 'react';

const ProgressIndicator = () => (
<div className= "progressIndicator"></div>
<div className="progressIndicator"></div>
);

ProgressIndicator.displayName = 'ProgressIndicator';

export default ProgressIndicator;

0 comments on commit 5272327

Please sign in to comment.