_SelectionToolbar.scss 307 Bytes
Newer Older
1 2 3 4 5 6 7
@mixin selectionToolbar() {
  $border: 1px solid $border-color;

  .esri-selection-toolbar {
    display: flex;
    flex: 1 1 0;
    width: 100%;
杨思琦's avatar
杨思琦 committed
8
    height: 100%;
9 10 11 12 13 14 15 16 17 18
  }

  .esri-selection-toolbar__container {
    display: flex;
  }
}

@if $include_SelectionToolbar == true {
  @include selectionToolbar();
}