19 lines
307 B
SCSS
19 lines
307 B
SCSS
@mixin selectionToolbar() {
|
|
$border: 1px solid $border-color;
|
|
|
|
.esri-selection-toolbar {
|
|
display: flex;
|
|
flex: 1 1 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.esri-selection-toolbar__container {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
@if $include_SelectionToolbar == true {
|
|
@include selectionToolbar();
|
|
}
|