Fix dialog animation

This commit is contained in:
Ajay Bura 2022-08-19 11:53:18 +05:30
parent 1b66cc6c05
commit 2cbba5b5a2

View file

@ -48,15 +48,11 @@
@keyframes raw-modal--content {
0% {
transform: scale(1.1);
transform: translateY(100px);
opacity: .5;
}
80% {
transform: scale(.995);
opacity: 1;
}
100% {
transform: scale(1) translateY(0);
transform: translateY(0);
opacity: 1;
}
}