/**
 * Bootstrap utilities
 */

@use "../settings" as *;
@use "../tools" as *;

@import "bootstrap/scss/utilities";

// stylelint-disable-next-line scss/dollar-variable-default
$utilities: map-merge(
  $utilities,
  (
    "opacity": null,
    "shadow": null,
    "font-family": null,
    "font-size": null,
    "font-style": null,
    "font-weight": null,
    "link-opacity": null,
    "link-offset": null,
    "link-underline": null,
    "link-underline-opacity": null,
    "subtle-border-color": null,
    "subtle-background-color": null,
    "text-transform": null,
    "text-color": null,
    "text-opacity": null,
    "gradient": null,
    "text-decoration": null,
    "rounded": (
      property: border-radius,
      class: rounded,
      values: (
        //null: $border-radius,
        //0: 0,
        //1: $border-radius-sm,
        //2: $border-radius,
        //3: $border-radius-lg,
        circle: 50%,
        pill: $border-radius-pill
      )
    ),
    "rounded-top": null,
    "rounded-end": null,
    "rounded-bottom": null,
    "rounded-start": null,
  )
);

@import "bootstrap/scss/utilities/api";
