Hide code input cell with jupyterlab-rise

My hacky solution so far is to make custom CSS that hides the input cell:

div.lm-Widget.jp-CodeMirrorEditor.jp-Editor.jp-InputArea-editor {
    max-height: 0px !important;
    border-width: 0px !important;
}
1 Like