Skip to content

Commit

Permalink
gt - Update keyframes name to scope to Spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
gthomas-appfolio committed Sep 16, 2017
1 parent 91c0a74 commit c1316a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Spinner.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const Spinner = ({ color, size, ...props }) => (
</defs>
<style>{`
.gears-spinner {
animation: spin ${DURATION} infinite steps(${SEGMENTS});
animation: gears-spinner-spin ${DURATION} infinite steps(${SEGMENTS});
}
@keyframes spin {
@keyframes gears-spinner-spin {
100% { transform: rotate(360deg); }
}
`}</style>
Expand Down

0 comments on commit c1316a2

Please sign in to comment.