// Initial $utilities map, that will be used by node_modules/bootstrap/scss/_utilities.scss
// THEN, augmented by `./augment-utilities.scss`

// utility sizes
$min-sizes: (
  '0': 0,
  '25': 25%,
  '50': 50%,
  '75': 75%,
  '100': 100%,
  'auto': auto,
);

// create min/max height/width responsive helpers (ie. .minw-sm)
$utilities: (
  'min-width': (
    property: 'min-width',
    class: 'minw',
    responsive: true,
    values: $min-sizes,
  ),
  'min-height': (
    property: 'min-height',
    class: 'minh',
    responsive: true,
    values:
      map-merge(
        $min-sizes,
        (
          '250': 250px,
        )
      ),
  ),
  'icon': (
    property: width height,
    class: icon,
    responsive: true,
    values: $icon-sizes,
  ),
) !default;