diff --git a/src/app/tabs/compile-tab.js b/src/app/tabs/compile-tab.js index ed2f168817..a8fce7512c 100644 --- a/src/app/tabs/compile-tab.js +++ b/src/app/tabs/compile-tab.js @@ -84,8 +84,6 @@ module.exports = class CompileTab { }) self._deps.editor.event.register('contentChanged', function changedFile () { if (!self._view.compileIcon) return - const compileTab = document.querySelector('.compileView') // @TODO: compileView tab - compileTab.style.color = styles.colors.red // @TODO: compileView tab self._view.compileIcon.classList.add(`${css.bouncingIcon}`) // @TODO: compileView tab }) self._deps.compiler.event.register('loadingCompiler', function start () { @@ -454,6 +452,11 @@ module.exports = class CompileTab { } const css = csjs` + .title { + font-size: 1.1em; + font-weight: bold; + margin-bottom: 1em; + } .panicError { color: red; font-size: 20px;