_UnitSelect.scss 211 B

123456789101112131415
  1. @mixin unitSelect() {
  2. .esri-unit-select {
  3. width: 100%;
  4. &__label {
  5. --calcite-label-margin-bottom: 0;
  6. width: 100%;
  7. }
  8. }
  9. }
  10. @if $include_UnitSelect == true {
  11. @include unitSelect();
  12. }