/*---------------------------------------------------------------------------------------------
* 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/index";
@import "../variables";

.nz-footer-snapMode-indicator {
  height: 100%;
  overflow: hidden;

  > .nz-indicator {
    height: 100%;
    display: flex;
    align-items: center;

    > .nz-label {
      margin-right: 6px;
      font-size: $text-font-size;
      text-align: center;

      @include for-tablet-landscape-down {
        display: none;
      }
    }

    > .nz-icon {
      display: flex;
      align-items: center;
    }

    &:hover {
      color: $buic-foreground-primary;
      cursor: pointer;
    }

    &:focus {
      outline: none;
    }
  }
}
