speed up search anim

pull/581/head
Matthew Hodgson 2015-12-21 23:20:10 +00:00
parent 031b048c07
commit f665848c5e
1 changed files with 2 additions and 2 deletions

View File

@ -46,12 +46,12 @@ limitations under the License.
@keyframes pulsate {
0% { opacity: 1.0; }
50% { opacity: 0.25; }
50% { opacity: 0.1; }
100% { opacity: 1.0; }
}
.mx_SearchBar_searching img {
animation: pulsate 0.75s ease-out;
animation: pulsate 0.5s ease-out;
animation-iteration-count: infinite;
}