Restore "wave" typing indicator animation

This commit is contained in:
Evan Hahn 2021-08-25 14:02:32 -05:00 committed by GitHub
parent e76f603233
commit 2d16542f4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -4275,7 +4275,12 @@ button.module-image__border-overlay:focus {
}
@include only-when-page-is-visible {
animation: typing-animation 1600ms ease infinite;
animation: {
name: typing-animation;
duration: 1600ms;
timing-function: ease;
iteration-count: infinite;
}
}
}