.editPage {
  display: flex;
  min-height: calc(100vh - 6rem);
  height: calc(100vh - 6rem);
  width: calc(100vw - 24rem);
}

.pagesPreview {
  flex: 1;
  padding: 30px;
  background-color: #eee;
  overflow-y: scroll;
}

.cardMeta {
  height: 190px;
  overflow: hidden;
}

.btns {
  display: flex;
  .btn {
    flex: 1;
    margin-right: 10px;
  }
  .btn:last-of-type {
    margin-right: 0;
  }
}

.disabled {
  opacity: 0.4;
}

.metasEditor {
  width: 400px;
  padding: 30px 20px;
  overflow-y: scroll;
}

.editorContainer {
  flex: 1;
  margin: 0;
  padding: 30px 20px;
  overflow: hidden;
}

.deleteRow {
  cursor: pointer;
  position: relative;
  // top: 4px;
  font-size: 24px;
  color: #999;
  transition: all .3s;
}

.deleteRow:hover {
  color: #777;
}
.deleteRow[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
