.spe-crop-menu {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  .spe-crop-menu-item {
    width: 80px;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
    color: #383838;

    &:hover {
      background: #ddd;
    }
    svg {
      height: 30px;
      width: 30px;
    }
    .spe-crop-menu-item-title {
      margin-top: 5px;
      font-size: 14px;
      user-select: none;
    }
  }
}
.spe-crop-frame {
  position: fixed;
  border: 2px dashed #fff;
  z-index: 1000002;
  cursor: move;
  .spe-frame-resize {
    height: 14px;
    width: 14px;
    background: #fff;
    position: absolute;

    &.spe-frame-tl {
      top: -7px;
      left: -7px;
      cursor: nwse-resize;
    }
    &.spe-frame-tr {
      top: -7px;
      right: -7px;
      cursor: nesw-resize;
    }
    &.spe-frame-bl {
      bottom: -7px;
      left: -7px;
      cursor: nesw-resize;
    }
    &.spe-frame-br {
      bottom: -7px;
      right: -7px;
      cursor: nwse-resize;
    }
  }
}
