diff --git a/app/editor/components/FloatingToolbar.tsx b/app/editor/components/FloatingToolbar.tsx index 00cda63889..73f5ea412f 100644 --- a/app/editor/components/FloatingToolbar.tsx +++ b/app/editor/components/FloatingToolbar.tsx @@ -420,11 +420,24 @@ const Wrapper = styled.div` box-sizing: border-box; } + & button, + & a, + & input { + pointer-events: none; + } + ${({ active }) => active && ` transform: translateY(-6px) scale(1); opacity: 1; + + & button, + & a, + & input { + pointer-events: auto; + transition: pointer-events 0s 300ms; + } `}; @media print {