From 2a45c6837486df3cb667f8d9b241a1e11e0d4fd2 Mon Sep 17 00:00:00 2001 From: Aria Minaei Date: Fri, 20 Aug 2021 11:38:12 +0200 Subject: [PATCH] Minor style bugfix --- theatre/studio/src/panels/OutlinePanel/OutlinePanel.tsx | 2 +- theatre/studio/src/uiComponents/Popover/BasicTooltip.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/theatre/studio/src/panels/OutlinePanel/OutlinePanel.tsx b/theatre/studio/src/panels/OutlinePanel/OutlinePanel.tsx index 0487e8b..2689833 100644 --- a/theatre/studio/src/panels/OutlinePanel/OutlinePanel.tsx +++ b/theatre/studio/src/panels/OutlinePanel/OutlinePanel.tsx @@ -32,7 +32,7 @@ const Container = styled.div` width: 20px; ${pointerEventsAutoInNormalMode}; } - ب &:hover:before { + &:hover:before { top: -12px; width: 300px; } diff --git a/theatre/studio/src/uiComponents/Popover/BasicTooltip.tsx b/theatre/studio/src/uiComponents/Popover/BasicTooltip.tsx index 32c7466..d6984f8 100644 --- a/theatre/studio/src/uiComponents/Popover/BasicTooltip.tsx +++ b/theatre/studio/src/uiComponents/Popover/BasicTooltip.tsx @@ -4,6 +4,7 @@ import BasicPopover from './BasicPopover' const BasicTooltip = styled(BasicPopover)` padding: 1em; max-width: 240px; + pointer-events: none; ` export default BasicTooltip