scale-in animation for column action menu, closes #1039

This commit is contained in:
Simon Willison 2020-10-21 10:02:26 -07:00
commit bf82b3d6a6
2 changed files with 19 additions and 0 deletions

View file

@ -453,3 +453,20 @@ svg.dropdown-menu-icon {
position: relative;
top: 1px;
}
.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.6);
}
100% {
opacity: 1;
transform: scale(1);
}
}