// This file augments the utilities map and can only be used/refrenced after the Bootstrap $utilities map is in context.
@function enable-responsive($key) {
  @return map-merge(
    map-get($utilities, $key),
    (
      responsive: true,
    )
  );
}

$utilities: map-merge(
  $utilities,
  map-loop(
    (
      'border',
      'border-top',
      'border-end',
      'border-bottom',
      'border-start',
      'rounded',
      'rounded-top',
      'rounded-end',
      'rounded-bottom',
      'rounded-start',
      'width',
      'max-width',
      'height',
      'max-height',
      'position',
      'font-size'
    ),
    enable-responsive,
    '$key'
  )
);