add animate-spin class

This commit is contained in:
taehoon 2019-12-03 11:16:38 -05:00
parent 57f46e68e4
commit 9d44015ab4
1 changed files with 15 additions and 0 deletions

View File

@ -855,3 +855,18 @@ nav {
.btn.btn-default {
min-height: 28px;
}
.animate-spin {
animation: spin 2s infinite linear;
display: inline-block;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}