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:
parent
015fe0080c
commit
a16bc30f21
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue