/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "~@bentley/ui-core/lib/ui-core/style/themecolors";
@import "../../scrollbar";
@import "../variables";

.nz-widget-rectangular-content {
  $padding: 10px;

  height: 100%;
  overflow: auto;
  padding-left: $padding;
  padding-right: $padding;
  box-sizing: border-box;

  &.nz-left-anchor {
    display: flex;
    flex-direction: row-reverse;
    direction: rtl;
    margin-right: $padding;

    > .nz-container {
      direction: ltr;
    }
  }

  @include nz-scrollbar();
}
