Skip to content

Commit d971094

Browse files
author
Jason Laster
committed
fix footer
1 parent 5ec0c08 commit d971094

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

public/js/components/Editor.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
.editor-mount,
3939
.CodeMirror {
4040
width: 100%;
41-
height: calc(100% - 31px);
41+
height: 100%;
4242
background-color: var(--theme-body-background);
4343
}
4444

public/js/components/SourceFooter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const SourceFooter = React.createClass({
9696
(!isEnabled("prettyPrint")
9797
&& !isEnabled("blackBox")
9898
&& !isEnabled("search"))) {
99-
return null;
99+
return dom.div({ className: "source-footer" });
100100
}
101101

102102
return dom.div({ className: "source-footer" },

0 commit comments

Comments
 (0)