add animate-spin class

このコミットが含まれているのは:
taehoon 2019-12-03 11:16:38 -05:00
コミット 9d44015ab4
1個のファイルの変更15行の追加0行の削除

ファイルの表示

@ -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);
}
}