$breakpoints: (
  desktop: 680,
  // other breakpoints go here
);

$media: (
  handheld: "only screen and (max-width: #{map-get($breakpoints, desktop) - 1}px)",
  desktop: "only screen and (min-width: #{map-get($breakpoints, desktop)}px)",
);
