We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a71d437 + 9948ebc commit 02aa981Copy full SHA for 02aa981
client/modules/IDE/components/Editor/MobileEditor.jsx
@@ -19,6 +19,7 @@ export const EditorContainer = styled.div`
19
padding: ${remSize(10)};
20
font-weight: bold;
21
${prop('MobilePanel.default')}
22
+ background-color: ${prop('backgroundColor')}
23
}
24
25
client/modules/IDE/components/Editor/index.jsx
@@ -582,7 +582,7 @@ class Editor extends React.Component {
582
</section>
583
) : (
584
<EditorContainer expanded={this.props.isExpanded}>
585
- <>
+ <div>
586
<IconButton
587
onClick={this.props.expandSidebar}
588
icon={FolderIcon}
@@ -591,7 +591,7 @@ class Editor extends React.Component {
591
{this.props.file.name}
592
<UnsavedChangesIndicator />
593
</span>
594
- </>
+ </div>
595
<section>
596
<EditorHolder
597
ref={(element) => {
0 commit comments