sync spinner

This commit is contained in:
Mo Bitar
2017-01-02 21:58:02 -06:00
parent e91994d885
commit b2621d0163
6 changed files with 35 additions and 4 deletions

View File

@@ -246,3 +246,17 @@ a.disabled {
}
}
}
.spinner {
height: 10px;
width: 10px;
animation: rotate 0.8s infinite linear;
border: 1px solid #515263;
border-right-color: transparent;
border-radius: 50%;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}