We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec0c08 commit d971094Copy full SHA for d971094
2 files changed
public/js/components/Editor.css
@@ -38,7 +38,7 @@
38
.editor-mount,
39
.CodeMirror {
40
width: 100%;
41
- height: calc(100% - 31px);
+ height: 100%;
42
background-color: var(--theme-body-background);
43
}
44
public/js/components/SourceFooter.js
@@ -96,7 +96,7 @@ const SourceFooter = React.createClass({
96
(!isEnabled("prettyPrint")
97
&& !isEnabled("blackBox")
98
&& !isEnabled("search"))) {
99
- return null;
+ return dom.div({ className: "source-footer" });
100
101
102
return dom.div({ className: "source-footer" },
0 commit comments