html, body{
    height: 100%;
    width: 100%;
}
.editor{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.editor__wrapper{
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
    background: var(--lightBackground);
    padding: 1em;
    border-radius: 3px;
    border: 1px solid #ccc;
}
.editor__code{
    position: relative;
    height: 95%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid black;
}
.editor__body{
    flex: 1;
}
.flexCommands {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.editorForm {
    margin-right: 1rem;
}
.theoremContent {
    font-style: italic;
}