From 4c7623f06539bc4a88bfeabb64dc4608431a41e6 Mon Sep 17 00:00:00 2001 From: DispatchCommit Date: Fri, 29 Jan 2021 17:50:19 -0800 Subject: [PATCH] disable pointer events while animating --- ui/scss/component/_animation.scss | 2 ++ 1 file changed, 2 insertions(+) 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; } }