/*---------------------------------------------------------------------------------------------
* 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";

.uifw-statusbar-space-between {
	width: 100%;
  height: 100%;
	display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.uifw-statusbar-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.uifw-statusbar-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.uifw-statusbar-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.uifw-statusbar-docked {
  width: 100%;
  background-color: $buic-background-statusbar;
}

.uifw-statusbar-item-container {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}
