@use "sass:map";
@use "sass:meta";
@use "warnings" as *;

////
/// @group settings/layout
////

/// Breakpoint definitions
///
/// @type Map

$nhsuk-breakpoints: (
  mobile: 320px,
  tablet: 641px,
  desktop: 769px,
  large-desktop: 990px
) !default;

/// Show active breakpoint in top-right corner.
///
/// Only use this during local development.
///
/// @type List

$nhsuk-show-breakpoints: () !default;

@if meta.type-of($nhsuk-show-breakpoints) == "bool" {
  @include nhsuk-warning(
    "nhsuk-show-breakpoints",
    "The `$nhsuk-show-breakpoints` variable is deprecated and is non-operational. It will be removed in the next major version. "
  );
}
