diff --git a/ui/scss/component/_animation.scss b/ui/scss/component/_animation.scss index 818b37ba7..47f7f0669 100644 --- a/ui/scss/component/_animation.scss +++ b/ui/scss/component/_animation.scss @@ -71,10 +71,12 @@ @keyframes menu-animate-in { 0% { transform: translateY(-100%); + pointer-events: none; opacity: 0; } 100% { transform: translateY(0); + pointer-events: all; opacity: 1; } }