/*---------------------------------------------------------------------------------------------
* 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 "~@bentley/ui-core/lib/ui-core/z-index";
@import "~@bentley/ui-core/lib/ui-core/geometry";

.nz-popup-tooltip {
  position: absolute;
  background-color: $buic-background-tooltip;
  color: $buic-text-color;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 5px;
  align-items: center;
  padding: 5px 10px;

  @include uicore-z-index(tooltip);

  > .nz-content {
    white-space: nowrap;
  }
}
