body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.Wrapper {
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: row;
}

.Wrapper .ReactCodeMirror {
  flex: 1;
  width: 50%;
  margin: 0;

}

:root .CodeMirror {
  height: 100%;
  width: 100%;
}

.Wrapper .ReactCodeMirror .CodeMirror {
  height: 100%;
  width: 100%;
}

.Wrapper .CodeOutput {
  display: flex;
  flex: 1;
  width: 50%;
  margin: 0;
}

.syntax-error .CodeMirror {
  border: solid 1px red;
}

.no-error .CodeMirror {
  border: solid 1px transparent;
}