.editor {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.dark {
  background-color: #2d2f32;

  :global(.cm-theme-dark .cm-editor) {
    background-color: #202124;
  }
}

.body {
  flex: 1;
  height: 0;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  height: 0;
}

.left {
  width: 100%;
  height: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #4c4d4f transparent;
}


.dialog{
  position: fixed;
  left: 0;
  top: 0;
}

.mask{
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}
