/*---------------------------------------------------------------------------------------------
 * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
 * See LICENSE.md in the project root for license terms and full copyright notice.
 *--------------------------------------------------------------------------------------------*/
.nz-widgetPanels-expander {
  $size: 1em;

  position: absolute;

  &.nz-left {
    width: $size;
    height: 100%;
    top: 0;
    left: 0;
  }

  &.nz-right {
    width: $size;
    height: 100%;
    top: 0;
    right: 0;
  }

  &.nz-top {
    width: 100%;
    height: $size;
    top: 0;
    left: 0;
  }

  &.nz-bottom {
    width: 100%;
    height: $size;
    bottom: 0;
    left: 0;
  }
}
