fix: Heading action depth conflict, closes #3558
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
/* eslint-disable no-irregular-whitespace */
|
||||
import { darken, lighten, transparentize } from "polished";
|
||||
import styled from "styled-components";
|
||||
import { depths } from "@shared/styles";
|
||||
|
||||
const EditorStyles = styled.div<{
|
||||
rtl: boolean;
|
||||
@@ -359,6 +360,7 @@ const EditorStyles = styled.div<{
|
||||
|
||||
.heading-actions {
|
||||
opacity: 0;
|
||||
z-index: ${depths.editorHeadingActions};
|
||||
background: ${(props) => props.theme.background};
|
||||
margin-${(props) => (props.rtl ? "right" : "left")}: -26px;
|
||||
flex-direction: ${(props) => (props.rtl ? "row-reverse" : "row")};
|
||||
|
||||
Reference in New Issue
Block a user