.resizeContainer {
  height: 100%;
  margin: 0 1px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;

  width: 3px;

  &.withDivider {
    width: 5px;
  }

  div:not([role='separator']) {
    width: 1px;
    height: 12px;
    background: #999999;
  }

  &:hover {
    cursor: col-resize;
    width: 5px;
    margin: 0;

    &.withDivider {
      width: 7px;
    }

    div:not([role='separator']) {
      width: 2px;
    }
  }
}
