1
1
mirror of https://github.com/primer/css.git synced 2025-01-05 04:47:21 +03:00

Adjust animation

This commit is contained in:
Amanda Pinsker 2019-06-21 12:36:26 +02:00
parent 84f23409a3
commit be2e9ed4f3

View File

@ -50,16 +50,16 @@
bottom: -100px;
left: 0;
animation-name: toast;
animation-duration: 10s;
animation-duration: 6s;
animation-delay: 1s;
animation-iteration-count: infinite;
animation-timing-function: ease;
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
// Pop up animation
@keyframes toast {
0% {bottom:-100px;}
5% {bottom:0px;}
10% {bottom:0px;}
90% {bottom:0px;}
100% {bottom:-100px;}
}