fix: Collapsed header button unclickable when full-width document option is selected

closes #3558
This commit is contained in:
Tom Moor
2022-05-20 10:04:36 +01:00
parent 0577c73f06
commit 90ca8655af

View File

@@ -403,7 +403,9 @@ const EditorStyles = styled.div<{
padding: 0;
&.collapsed {
transform: rotate(${(props) => (props.rtl ? "90deg" : "-90deg")});
svg {
transform: rotate(${(props) => (props.rtl ? "90deg" : "-90deg")});
}
transition-delay: 0.1s;
opacity: 1;
}