-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Description
Inspired by the animation on some of GitHub's dropdown menus:
/* Fade in an element and scale it fast */
.anim-scale-in {
animation-name: scale-in;
animation-duration: 0.15s;
animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
}
@keyframes scale-in {
0% {
opacity: 0;
transform: scale(0.5);
}
100% {
opacity: 1;
transform: scale(1);
}
}Reactions are currently unavailable