disable pointer events while animating
This commit is contained in:
parent
f991d5c87f
commit
4c7623f065
1 changed files with 2 additions and 0 deletions
|
@ -71,10 +71,12 @@
|
||||||
@keyframes menu-animate-in {
|
@keyframes menu-animate-in {
|
||||||
0% {
|
0% {
|
||||||
transform: translateY(-100%);
|
transform: translateY(-100%);
|
||||||
|
pointer-events: none;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
|
pointer-events: all;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue