fix: tweak spinner animation (#1337)

I think it looks better if it looks like the dots are growing or
shrinking rather than the whole thing spinning.
This commit is contained in:
Nolan Lawson 2019-07-17 21:34:45 -07:00 committed by GitHub
parent 015fe0080c
commit a16bc30f21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 10 deletions

View File

@ -205,22 +205,13 @@ textarea {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(90deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
}
}
.spin {
animation: spin 1.5s infinite linear;
animation: spin 0.6s steps(8) infinite;
}
.ellipsis::after {