DraggleLayout.less 510 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
.root {
    position: relative;
    display: flex;
    margin: 24px auto;
    .left {
      height: 100%;
      position: relative;
      .handler {
        position: absolute;
        right: 0;
        bottom: 0;
        width: auto;
        height: 100%;
  
        user-select: none;
        color: #fff;
        text-align: center;
        cursor: ew-resize;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
    }
    .right {
      height: 100%;
    }
  }