/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@mixin property-action-button-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.components-property-action-button-list--horizontal {
  @include property-action-button-list;
  grid-column: 4;
}

.components-property-action-button-list--vertical {
  @include property-action-button-list;
  grid-column: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}

.components-action-button-container {
  margin: 0 5px 0 5px;
}
