.editor-property-drawer {
  position: absolute;
  top: 40px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
.editor-property-drawer.editor-property-drawer-right {
  transform: translateX(100%);
}
.editor-property-drawer.editor-property-drawer-left {
  transform: translateX(-100%);
}
.editor-property-drawer.editor-property-drawer-show {
  transform: translate(0);
}
.editor-property-drawer-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #d9d9d9;
}
.editor-property-drawer-header-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.editor-property-drawer-header-main span:first-child {
  margin-right: 3px;
}
.editor-property-drawer-body {
  flex: 1;
  height: 0;
  overflow: auto;
}
.editor-property-drawer-border {
  border: 1px solid #d9d9d9;
}
