/// Breakpoints map, gathering all breakpoints of the application
/// @access private
/// @type Map
/// @prop {String} key - Size's name
/// @prop {Number} value - min-width value mapped to the key
$breakpoints: (
  "sm-only": (
    max-width: 600px,
  ),
  "sm": (
    min-width: 480px,
  ),
  "md": (
    min-width: 700px,
  ),
  "lg": (
    min-width: 1024px,
  ),
  "xl": (
    min-width: 1440px,
  ),
  "xxl": (
    min-width: 2560px,
  ),
);
