Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
[#00] fix () -> add missing scss file
Browse files Browse the repository at this point in the history
  • Loading branch information
Duc Anh Phi committed Feb 5, 2017
1 parent 33ed9ef commit 37bd48d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions assets/styles/components/_ducspinner.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//spinner
.g-ducspinner {
margin: 17% auto 0 auto;
height: 28px;
width: 28px;
animation: rotate 0.5s infinite linear;
border: 6px solid $grey-medium;
border-right-color: transparent;
border-radius: 50%;
}

@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

0 comments on commit 37bd48d

Please sign in to comment.